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 55952d4 commit eb828d0Copy full SHA for eb828d0
2 files changed
src/testdir/test_normal.vim
@@ -1248,10 +1248,12 @@ func! Test_normal23_K()
1248
norm! K
1249
call assert_equal('aa%bb', fnamemodify(bufname('%'), ':t'))
1250
bwipe!
1251
- 4
1252
- norm! K
1253
- call assert_equal('cc|dd', fnamemodify(bufname('%'), ':t'))
1254
- bwipe!
+ if !has('win32')
+ 4
+ norm! K
+ call assert_equal('cc|dd', fnamemodify(bufname('%'), ':t'))
1255
+ bwipe!
1256
+ endif
1257
set iskeyword-=%
1258
set iskeyword-=\|
1259
src/version.c
@@ -764,6 +764,8 @@ static char *(features[]) =
764
765
static int included_patches[] =
766
{ /* Add new patch number below this line */
767
+/**/
768
+ 64,
769
/**/
770
63,
771
0 commit comments