mirror of
https://github.com/neovim/neovim.git
synced 2026-02-20 01:09:56 +10:00
vim-patch:8.2.4497: wrong color for half of wide character next to pum scrollbar (#25693)
Problem: Wrong color for half of wide character next to pum scrollbar.
Solution: Redraw the screen cell with the right color. (closes vim/vim#9874)
35d8c2010e
Co-authored-by: Bram Moolenaar <Bram@vim.org>
This commit is contained in:
@@ -530,10 +530,8 @@ func Test_ins_completeslash()
|
||||
CheckMSWindows
|
||||
|
||||
call mkdir('Xdir')
|
||||
|
||||
let orig_shellslash = &shellslash
|
||||
set cpt&
|
||||
|
||||
new
|
||||
|
||||
set noshellslash
|
||||
@@ -655,6 +653,24 @@ func Test_pum_with_preview_win()
|
||||
call delete('Xpreviewscript')
|
||||
endfunc
|
||||
|
||||
func Test_scrollbar_on_wide_char()
|
||||
CheckScreendump
|
||||
|
||||
let lines =<< trim END
|
||||
call setline(1, ['a', ' 啊啊啊',
|
||||
\ ' 哦哦哦',
|
||||
\ ' 呃呃呃'])
|
||||
call setline(5, range(10)->map({i, v -> 'aa' .. v .. 'bb'}))
|
||||
END
|
||||
call writefile(lines, 'Xwidescript')
|
||||
let buf = RunVimInTerminal('-S Xwidescript', #{rows: 10})
|
||||
call term_sendkeys(buf, "A\<C-N>")
|
||||
call VerifyScreenDump(buf, 'Test_scrollbar_on_wide_char', {})
|
||||
|
||||
call StopVimInTerminal(buf)
|
||||
call delete('Xwidescript')
|
||||
endfunc
|
||||
|
||||
" Test for inserting the tag search pattern in insert mode
|
||||
func Test_ins_compl_tag_sft()
|
||||
call writefile([
|
||||
|
||||
Reference in New Issue
Block a user