mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
patch 8.2.3531: command line completion test fails on MS-Windows
Problem: Command line completion test fails on MS-Windows. Solution: Do not test with "\{" on MS-Windows.
This commit is contained in:
parent
21c1a0c2f1
commit
39c47c3104
@ -901,10 +901,13 @@ func Test_cmdline_complete_various()
|
|||||||
call assert_equal("\"unlet one two", @:)
|
call assert_equal("\"unlet one two", @:)
|
||||||
|
|
||||||
" completion for the :buffer command with curlies
|
" completion for the :buffer command with curlies
|
||||||
|
" FIXME: what should happen on MS-Windows?
|
||||||
|
if !has('win32')
|
||||||
edit \{someFile}
|
edit \{someFile}
|
||||||
call feedkeys(":buf someFile\<C-A>\<C-B>\"\<CR>", 'xt')
|
call feedkeys(":buf someFile\<C-A>\<C-B>\"\<CR>", 'xt')
|
||||||
call assert_equal("\"buf {someFile}", @:)
|
call assert_equal("\"buf {someFile}", @:)
|
||||||
bwipe {someFile}
|
bwipe {someFile}
|
||||||
|
endif
|
||||||
|
|
||||||
" completion for the :bdelete command
|
" completion for the :bdelete command
|
||||||
call feedkeys(":bdel a b c\<C-A>\<C-B>\"\<CR>", 'xt')
|
call feedkeys(":bdel a b c\<C-A>\<C-B>\"\<CR>", 'xt')
|
||||||
|
@ -757,6 +757,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
3531,
|
||||||
/**/
|
/**/
|
||||||
3530,
|
3530,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user