aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ex_cmds2.c
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2019-06-13 22:27:47 -0400
committerJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2019-06-13 22:40:12 -0400
commit18b031ea1d3830c8ff25f4d5ee488f68f464dbee (patch)
treea5153aeadf1bae34dc775fb01186acab745e4ccc /src/nvim/ex_cmds2.c
parent6efa3bff09afb0e54ad71278ac60259bf41be286 (diff)
downloadrneovim-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_cmds2.c')
-rw-r--r--src/nvim/ex_cmds2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/ex_cmds2.c b/src/nvim/ex_cmds2.c
index 3202f82a29..3b83c59675 100644
--- a/src/nvim/ex_cmds2.c
+++ b/src/nvim/ex_cmds2.c
@@ -1274,9 +1274,9 @@ bool check_changed(buf_T *buf, int flags)
return bufIsChanged(buf);
}
if (flags & CCGD_EXCMD) {
- EMSG(_(e_nowrtmsg));
+ no_write_message();
} else {
- EMSG(_(e_nowrtmsg_nobang));
+ no_write_message_nobang();
}
return true;
}