summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-06-04 15:33:48 +0200
committerBram Moolenaar <Bram@vim.org>2017-06-04 15:33:48 +0200
commit28a8193e3113f676f89fb6312b099d849df881d3 (patch)
tree0dd0f64e9ccb53adec0f69d481e1f74c019fb5ac
parenta3921f48c6b31a035c80fda49925dd3b42df0dec (diff)
downloadvim-git-28a8193e3113f676f89fb6312b099d849df881d3.tar.gz
patch 8.0.0609: some people still don't know how to quitv8.0.0609
Problem: For some people the hint about quitting is not sufficient. Solution: Put <Enter> separately. Also use ":qa!" to get out even when there are changes.
-rw-r--r--src/normal.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/normal.c b/src/normal.c
index 9a1226772..7b3f94af5 100644
--- a/src/normal.c
+++ b/src/normal.c
@@ -8986,7 +8986,7 @@ nv_esc(cmdarg_T *cap)
#endif
&& !VIsual_active
&& no_reason)
- MSG(_("Type :quit<Enter> to exit Vim"));
+ MSG(_("Type :qa! and press <Enter> to abandon all changes and exit Vim"));
/* Don't reset "restart_edit" when 'insertmode' is set, it won't be
* set again below when halfway a mapping. */
diff --git a/src/version.c b/src/version.c
index 70d620194..8c5679e54 100644
--- a/src/version.c
+++ b/src/version.c
@@ -765,6 +765,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 609,
+/**/
608,
/**/
607,