mirror of
https://github.com/neovim/neovim.git
synced 2026-02-02 10:04:29 +00:00
vim-patch:9.1.0945: ComplMatchIns highlight doesn't end after inserted text (#31628)
Problem: ComplMatchIns highlight doesn't end after inserted text.
Solution: Handle ComplMatchIns highlight more like search highlight.
Fix off-by-one error. Handle deleting text properly.
(zeertzjq)
closes: vim/vim#16244
f25d8f9312
This commit is contained in:
@@ -94,7 +94,7 @@ describe('ui mode_change event', function()
|
||||
}
|
||||
end)
|
||||
|
||||
-- oldtest: Test_indent_norm_with_gq()
|
||||
-- oldtest: Test_mouse_shape_indent_norm_with_gq()
|
||||
it('is restored to Normal mode after "gq" indents using :normal #12309', function()
|
||||
screen:try_resize(60, 6)
|
||||
n.exec([[
|
||||
|
||||
@@ -1162,6 +1162,8 @@ describe('builtin popupmenu', function()
|
||||
[6] = { foreground = Screen.colors.White, background = Screen.colors.Red },
|
||||
[7] = { background = Screen.colors.Yellow }, -- Search
|
||||
[8] = { foreground = Screen.colors.Red },
|
||||
[9] = { foreground = Screen.colors.Yellow, background = Screen.colors.Green },
|
||||
[10] = { foreground = Screen.colors.White, background = Screen.colors.Green },
|
||||
ks = { foreground = Screen.colors.Red, background = Screen.colors.Grey },
|
||||
kn = { foreground = Screen.colors.Red, background = Screen.colors.Plum1 },
|
||||
xs = { foreground = Screen.colors.Black, background = Screen.colors.Grey },
|
||||
@@ -5625,6 +5627,114 @@ describe('builtin popupmenu', function()
|
||||
{2:-- INSERT --} |
|
||||
]])
|
||||
feed('<Esc>')
|
||||
|
||||
-- text after the inserted text shouldn't be highlighted
|
||||
feed('0ea <C-X><C-O>')
|
||||
screen:expect([[
|
||||
αβγ {8:foo}^ foo |
|
||||
{1:~ }{s: foo }{1: }|
|
||||
{1:~ }{n: bar }{1: }|
|
||||
{1:~ }{n: 你好 }{1: }|
|
||||
{1:~ }|*15
|
||||
{2:-- }{5:match 1 of 3} |
|
||||
]])
|
||||
feed('<C-P>')
|
||||
screen:expect([[
|
||||
αβγ ^ foo |
|
||||
{1:~ }{n: foo }{1: }|
|
||||
{1:~ }{n: bar }{1: }|
|
||||
{1:~ }{n: 你好 }{1: }|
|
||||
{1:~ }|*15
|
||||
{2:-- }{8:Back at original} |
|
||||
]])
|
||||
feed('<C-P>')
|
||||
screen:expect([[
|
||||
αβγ {8:你好}^ foo |
|
||||
{1:~ }{n: foo }{1: }|
|
||||
{1:~ }{n: bar }{1: }|
|
||||
{1:~ }{s: 你好 }{1: }|
|
||||
{1:~ }|*15
|
||||
{2:-- }{5:match 3 of 3} |
|
||||
]])
|
||||
feed('<C-Y>')
|
||||
screen:expect([[
|
||||
αβγ 你好^ foo |
|
||||
{1:~ }|*18
|
||||
{2:-- INSERT --} |
|
||||
]])
|
||||
feed('<Esc>')
|
||||
end)
|
||||
|
||||
-- oldtest: Test_pum_matchins_highlight_combine()
|
||||
it('with ComplMatchIns, Normal and CursorLine highlights', function()
|
||||
exec([[
|
||||
func Omni_test(findstart, base)
|
||||
if a:findstart
|
||||
return col(".")
|
||||
endif
|
||||
return [#{word: "foo"}, #{word: "bar"}, #{word: "你好"}]
|
||||
endfunc
|
||||
set omnifunc=Omni_test
|
||||
hi Normal guibg=blue
|
||||
hi CursorLine guibg=green guifg=white
|
||||
set cursorline
|
||||
call setline(1, 'aaa bbb')
|
||||
]])
|
||||
|
||||
-- when ComplMatchIns is not set, CursorLine applies normally
|
||||
feed('0ea <C-X><C-O>')
|
||||
screen:expect([[
|
||||
{10:aaa foo^ bbb }|
|
||||
{1:~ }{s: foo }{1: }|
|
||||
{1:~ }{n: bar }{1: }|
|
||||
{1:~ }{n: 你好 }{1: }|
|
||||
{1:~ }|*15
|
||||
{2:-- }{5:match 1 of 3} |
|
||||
]])
|
||||
feed('<C-E>')
|
||||
screen:expect([[
|
||||
{10:aaa ^ bbb }|
|
||||
{1:~ }|*18
|
||||
{2:-- INSERT --} |
|
||||
]])
|
||||
feed('<BS><Esc>')
|
||||
|
||||
-- when ComplMatchIns is set, it is applied over CursorLine
|
||||
command('hi ComplMatchIns guifg=Yellow')
|
||||
feed('0ea <C-X><C-O>')
|
||||
screen:expect([[
|
||||
{10:aaa }{9:foo}{10:^ bbb }|
|
||||
{1:~ }{s: foo }{1: }|
|
||||
{1:~ }{n: bar }{1: }|
|
||||
{1:~ }{n: 你好 }{1: }|
|
||||
{1:~ }|*15
|
||||
{2:-- }{5:match 1 of 3} |
|
||||
]])
|
||||
feed('<C-P>')
|
||||
screen:expect([[
|
||||
{10:aaa ^ bbb }|
|
||||
{1:~ }{n: foo }{1: }|
|
||||
{1:~ }{n: bar }{1: }|
|
||||
{1:~ }{n: 你好 }{1: }|
|
||||
{1:~ }|*15
|
||||
{2:-- }{8:Back at original} |
|
||||
]])
|
||||
feed('<C-P>')
|
||||
screen:expect([[
|
||||
{10:aaa }{9:你好}{10:^ bbb }|
|
||||
{1:~ }{n: foo }{1: }|
|
||||
{1:~ }{n: bar }{1: }|
|
||||
{1:~ }{s: 你好 }{1: }|
|
||||
{1:~ }|*15
|
||||
{2:-- }{5:match 3 of 3} |
|
||||
]])
|
||||
feed('<C-E>')
|
||||
screen:expect([[
|
||||
{10:aaa ^ bbb }|
|
||||
{1:~ }|*18
|
||||
{2:-- INSERT --} |
|
||||
]])
|
||||
feed('<Esc>')
|
||||
end)
|
||||
end
|
||||
end
|
||||
|
||||
@@ -308,7 +308,7 @@ endfunc
|
||||
|
||||
" Test that mouse shape is restored to Normal mode after using "gq" when
|
||||
" 'indentexpr' executes :normal.
|
||||
func Test_indent_norm_with_gq()
|
||||
func Test_mouse_shape_indent_norm_with_gq()
|
||||
CheckFeature mouseshape
|
||||
CheckCanRunGui
|
||||
|
||||
|
||||
@@ -1747,13 +1747,67 @@ func Test_pum_matchins_highlight()
|
||||
call TermWait(buf)
|
||||
call term_sendkeys(buf, "Sαβγ \<C-X>\<C-O>\<C-Y>")
|
||||
call VerifyScreenDump(buf, 'Test_pum_matchins_04', {})
|
||||
call term_sendkeys(buf, "\<C-E>\<Esc>")
|
||||
call term_sendkeys(buf, "\<Esc>")
|
||||
|
||||
" restore after cancel completion
|
||||
call TermWait(buf)
|
||||
call term_sendkeys(buf, "Sαβγ \<C-X>\<C-O>\<Space>")
|
||||
call VerifyScreenDump(buf, 'Test_pum_matchins_05', {})
|
||||
call term_sendkeys(buf, "\<C-E>\<Esc>")
|
||||
call term_sendkeys(buf, "\<Esc>")
|
||||
|
||||
" text after the inserted text shouldn't be highlighted
|
||||
call TermWait(buf)
|
||||
call term_sendkeys(buf, "0ea \<C-X>\<C-O>")
|
||||
call VerifyScreenDump(buf, 'Test_pum_matchins_07', {})
|
||||
call term_sendkeys(buf, "\<C-P>")
|
||||
call VerifyScreenDump(buf, 'Test_pum_matchins_08', {})
|
||||
call term_sendkeys(buf, "\<C-P>")
|
||||
call VerifyScreenDump(buf, 'Test_pum_matchins_09', {})
|
||||
call term_sendkeys(buf, "\<C-Y>")
|
||||
call VerifyScreenDump(buf, 'Test_pum_matchins_10', {})
|
||||
call term_sendkeys(buf, "\<Esc>")
|
||||
|
||||
call StopVimInTerminal(buf)
|
||||
endfunc
|
||||
|
||||
func Test_pum_matchins_highlight_combine()
|
||||
CheckScreendump
|
||||
let lines =<< trim END
|
||||
func Omni_test(findstart, base)
|
||||
if a:findstart
|
||||
return col(".")
|
||||
endif
|
||||
return [#{word: "foo"}, #{word: "bar"}, #{word: "你好"}]
|
||||
endfunc
|
||||
set omnifunc=Omni_test
|
||||
hi Normal ctermbg=blue
|
||||
hi CursorLine cterm=underline ctermbg=green
|
||||
set cursorline
|
||||
call setline(1, 'aaa bbb')
|
||||
END
|
||||
call writefile(lines, 'Xscript', 'D')
|
||||
let buf = RunVimInTerminal('-S Xscript', {})
|
||||
|
||||
" when ComplMatchIns is not set, CursorLine applies normally
|
||||
call term_sendkeys(buf, "0ea \<C-X>\<C-O>")
|
||||
call VerifyScreenDump(buf, 'Test_pum_matchins_combine_01', {})
|
||||
call term_sendkeys(buf, "\<C-E>")
|
||||
call VerifyScreenDump(buf, 'Test_pum_matchins_combine_02', {})
|
||||
call term_sendkeys(buf, "\<BS>\<Esc>")
|
||||
|
||||
" when ComplMatchIns is set, it is applied over CursorLine
|
||||
call TermWait(buf)
|
||||
call term_sendkeys(buf, ":hi ComplMatchIns ctermbg=red ctermfg=yellow\<CR>")
|
||||
call TermWait(buf)
|
||||
call term_sendkeys(buf, "0ea \<C-X>\<C-O>")
|
||||
call VerifyScreenDump(buf, 'Test_pum_matchins_combine_03', {})
|
||||
call term_sendkeys(buf, "\<C-P>")
|
||||
call VerifyScreenDump(buf, 'Test_pum_matchins_combine_04', {})
|
||||
call term_sendkeys(buf, "\<C-P>")
|
||||
call VerifyScreenDump(buf, 'Test_pum_matchins_combine_05', {})
|
||||
call term_sendkeys(buf, "\<C-E>")
|
||||
call VerifyScreenDump(buf, 'Test_pum_matchins_combine_06', {})
|
||||
call term_sendkeys(buf, "\<Esc>")
|
||||
|
||||
call StopVimInTerminal(buf)
|
||||
endfunc
|
||||
|
||||
Reference in New Issue
Block a user