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 1643548 commit 6559100Copy full SHA for 6559100
2 files changed
src/testdir/test_viml.vim
@@ -982,6 +982,11 @@ func Test_type()
982
call assert_true(v:none isnot 0)
983
call assert_true(v:null isnot 0)
984
call assert_true(v:null isnot v:none)
985
+
986
+ call assert_equal(v:false, eval(string(v:false)))
987
+ call assert_equal(v:true, eval(string(v:true)))
988
+ call assert_equal(v:none, eval(string(v:none)))
989
+ call assert_equal(v:null, eval(string(v:null)))
990
endfunc
991
992
"-------------------------------------------------------------------------------
src/version.c
@@ -741,6 +741,8 @@ static char *(features[]) =
741
742
static int included_patches[] =
743
{ /* Add new patch number below this line */
744
+/**/
745
+ 1173,
746
/**/
747
1172,
748
0 commit comments