aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ex_docmd.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_docmd.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_docmd.c')
-rw-r--r--src/nvim/ex_docmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ex_docmd.c b/src/nvim/ex_docmd.c
index fb15bd4e66..0e8455bb07 100644
--- a/src/nvim/ex_docmd.c
+++ b/src/nvim/ex_docmd.c
@@ -6216,7 +6216,7 @@ ex_win_close(
}
need_hide = false;
} else {
- EMSG(_(e_nowrtmsg));
+ no_write_message();
return;
}
}