diff options
author | bfredl <bjorn.linse@gmail.com> | 2024-11-09 13:48:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-09 13:48:45 +0100 |
commit | dd4c828c86d0da7823a1c415d0e9c1d493e901b7 (patch) | |
tree | a50e1acc9853288d484f135acc50c066521a1b22 /test/functional/vimscript/timer_spec.lua | |
parent | 07b14c8e2ed288dfca382719aeb26d544573f51a (diff) | |
parent | abe6a07c54c0e927cf43f7f61b05ac91547daeed (diff) | |
download | rneovim-dd4c828c86d0da7823a1c415d0e9c1d493e901b7.tar.gz rneovim-dd4c828c86d0da7823a1c415d0e9c1d493e901b7.tar.bz2 rneovim-dd4c828c86d0da7823a1c415d0e9c1d493e901b7.zip |
Merge pull request #31118 from bfredl/merehl
refactor(tests): continue the global highlight definition work
Diffstat (limited to 'test/functional/vimscript/timer_spec.lua')
-rw-r--r-- | test/functional/vimscript/timer_spec.lua | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/test/functional/vimscript/timer_spec.lua b/test/functional/vimscript/timer_spec.lua index f075e382bc..1e484c9ff9 100644 --- a/test/functional/vimscript/timer_spec.lua +++ b/test/functional/vimscript/timer_spec.lua @@ -109,9 +109,6 @@ describe('timers', function() it('can invoke redraw in blocking getchar() call', function() local screen = Screen.new(40, 6) screen:attach() - screen:set_default_attr_ids({ - [1] = { bold = true, foreground = Screen.colors.Blue }, - }) api.nvim_buf_set_lines(0, 0, -1, true, { 'ITEM 1', 'ITEM 2' }) source([[ @@ -229,7 +226,6 @@ describe('timers', function() it("doesn't mess up the cmdline", function() local screen = Screen.new(40, 6) screen:attach() - screen:set_default_attr_ids({ [0] = { bold = true, foreground = 255 } }) source([[ let g:val = 0 func! MyHandler(timer) @@ -247,7 +243,7 @@ describe('timers', function() feed(':good') screen:expect([[ | - {0:~ }|*4 + {1:~ }|*4 :good^ | ]]) command('let g:val = 1') |