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 3e9d4d8 commit 346d2a3Copy full SHA for 346d2a3
2 files changed
src/testdir/test_cmdline.vim
@@ -430,8 +430,9 @@ func Test_cmdline_complete_user_names()
430
let names = system('net user')
431
if names =~ 'Administrator'
432
" Trying completion of :e ~A should complete to Administrator.
433
+ " There could be other names starting with "A" before Administrator.
434
call feedkeys(':e ~A' . "\<c-a>\<c-B>\"\<cr>", 'tx')
- call assert_match('^"e \~Administrator', @:)
435
+ call assert_match('^"e \~.*Administrator', @:)
436
endif
437
438
endfunc
src/version.c
@@ -783,6 +783,8 @@ static char *(features[]) =
783
784
static int included_patches[] =
785
{ /* Add new patch number below this line */
786
+/**/
787
+ 836,
788
/**/
789
835,
790
0 commit comments