diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-06-13 22:27:47 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-06-13 22:40:12 -0400 |
commit | 18b031ea1d3830c8ff25f4d5ee488f68f464dbee (patch) | |
tree | a5153aeadf1bae34dc775fb01186acab745e4ccc /src/nvim/ex_cmds.c | |
parent | 6efa3bff09afb0e54ad71278ac60259bf41be286 (diff) | |
download | rneovim-18b031ea1d3830c8ff25f4d5ee488f68f464dbee.tar.gz rneovim-18b031ea1d3830c8ff25f4d5ee488f68f464dbee.tar.bz2 rneovim-18b031ea1d3830c8ff25f4d5ee488f68f464dbee.zip |
vim-patch:8.0.0953: get "no write since last change" error in terminal window
Problem: Get "no write since last change" error in terminal window.
Solution: Use another message when closing a terminal window. Make ":quit!"
also end the job.
https://github.com/vim/vim/commit/f5be7cd01642fafc4b7d68894eb60cca60c7a405
Diffstat (limited to 'src/nvim/ex_cmds.c')
-rw-r--r-- | src/nvim/ex_cmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ex_cmds.c b/src/nvim/ex_cmds.c index 1dd76553d4..30667b64e5 100644 --- a/src/nvim/ex_cmds.c +++ b/src/nvim/ex_cmds.c @@ -2076,7 +2076,7 @@ int getfile(int fnum, char_u *ffname, char_u *sfname, int setpm, linenr_T lnum, } if (curbufIsChanged()) { no_wait_return--; - EMSG(_(e_nowrtmsg)); + no_write_message(); retval = GETFILE_NOT_WRITTEN; // File has been changed. goto theend; } |