1
0
forked from aniani/vim

patch 8.1.2348: :const cannot be followed by "| endif"

Problem:    :const cannot be followed by "| endif".
Solution:   Check following command for :const. (closes #5269)
            Also fix completion after :const.
This commit is contained in:
Bram Moolenaar
2019-11-26 16:50:30 +01:00
parent 84f903326d
commit 8f76e6b12b
7 changed files with 16 additions and 1 deletions

View File

@@ -1508,6 +1508,7 @@ set_one_cmd_context(
break;
#endif
#ifdef FEAT_EVAL
case CMD_const:
case CMD_let:
case CMD_if:
case CMD_elseif:

View File

@@ -1521,7 +1521,7 @@ set_context_for_expression(
int c;
char_u *p;
if (cmdidx == CMD_let)
if (cmdidx == CMD_let || cmdidx == CMD_const)
{
xp->xp_context = EXPAND_USER_VARS;
if (vim_strpbrk(arg, (char_u *)"\"'+-*/%.=!?~|&$([<>,#") == NULL)

View File

@@ -2359,6 +2359,7 @@ do_one_cmd(
case CMD_browse:
case CMD_call:
case CMD_confirm:
case CMD_const:
case CMD_delfunction:
case CMD_djump:
case CMD_dlist:

View File

@@ -184,6 +184,7 @@ func Test_expr_completion()
endif
for cmd in [
\ 'let a = ',
\ 'const a = ',
\ 'if',
\ 'elseif',
\ 'while',

View File

@@ -197,6 +197,12 @@ func Test_cannot_modify_existing_variable()
call assert_fails('const [i2, f2, s2] = [1, 1.1, "vim"]', 'E995:')
endfunc
func Test_const_with_condition()
const x = 0
if 0 | const x = 1 | endif
call assert_equal(0, x)
endfunc
func Test_const_with_index_access()
let l = [1, 2, 3]
call assert_fails('const l[0] = 4', 'E996:')

View File

@@ -24,6 +24,10 @@ func Test_let()
let out = execute('let a {0 == 1 ? "a" : "b"}')
let s = "\na #1\nb #2"
call assert_equal(s, out)
let x = 0
if 0 | let x = 1 | endif
call assert_equal(0, x)
endfunc
func s:set_arg1(a) abort

View File

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