We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f96e9de commit 6a25026Copy full SHA for 6a25026
3 files changed
src/eval.c
@@ -903,6 +903,7 @@ get_lval(
903
clear_tv(&var1);
904
return NULL;
905
}
906
+ p = skipwhite(p);
907
908
909
// Optionally get the second index [ :expr].
src/testdir/test_expr.vim
@@ -55,6 +55,9 @@ func Test_dict()
55
let d['a'] = 'aaa'
56
call assert_equal('none', d[''])
57
call assert_equal('aaa', d['a'])
58
+
59
+ let d[ 'b' ] = 'bbb'
60
+ call assert_equal('bbb', d[ 'b' ])
61
endfunc
62
63
func Test_strgetchar()
src/version.c
@@ -754,6 +754,8 @@ static char *(features[]) =
754
755
static int included_patches[] =
756
{ /* Add new patch number below this line */
757
+/**/
758
+ 1361,
759
/**/
760
1360,
761
0 commit comments