# HG changeset patch # User Christian Brabandt # Date 1496583904 -7200 # Node ID be76f4eca0d721779d6a6a464bee46acf07ae0cc # Parent 2fbe85833d49d6eb1a8ab122e822ed966cc64606 patch 8.0.0609: some people still don't know how to quit commit https://github.com/vim/vim/commit/28a8193e3113f676f89fb6312b099d849df881d3 Author: Bram Moolenaar Date: Sun Jun 4 15:33:48 2017 +0200 patch 8.0.0609: some people still don't know how to quit Problem: For some people the hint about quitting is not sufficient. Solution: Put separately. Also use ":qa!" to get out even when there are changes. diff --git a/src/normal.c b/src/normal.c --- 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 to exit Vim")); + MSG(_("Type :qa! and press 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 --- 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,