0
0
mirror of https://github.com/vim/vim.git synced 2025-07-26 11:04:33 -04:00

updated for version 7.3.1235

Problem:    In insert mode CTRL-] is not inserted, on the command-line it is.
Solution:   Don't insert CTRL-] on the command line. (Yukihiro Nakadaira)
This commit is contained in:
Bram Moolenaar 2013-06-23 16:16:19 +02:00
parent 6f1404f8a8
commit ede3e6383d
2 changed files with 4 additions and 2 deletions

View File

@ -1700,13 +1700,13 @@ getcmdline(firstc, count, indent)
* We come here if we have a normal character. * We come here if we have a normal character.
*/ */
if (do_abbr && (IS_SPECIAL(c) || !vim_iswordc(c)) && ccheck_abbr( if (do_abbr && (IS_SPECIAL(c) || !vim_iswordc(c)) && (ccheck_abbr(
#ifdef FEAT_MBYTE #ifdef FEAT_MBYTE
/* Add ABBR_OFF for characters above 0x100, this is /* Add ABBR_OFF for characters above 0x100, this is
* what check_abbr() expects. */ * what check_abbr() expects. */
(has_mbyte && c >= 0x100) ? (c + ABBR_OFF) : (has_mbyte && c >= 0x100) ? (c + ABBR_OFF) :
#endif #endif
c)) c) || c == Ctrl_RSB))
goto cmdline_changed; goto cmdline_changed;
/* /*

View File

@ -728,6 +728,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
1235,
/**/ /**/
1234, 1234,
/**/ /**/