diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/functional/ui/highlight_spec.lua | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/functional/ui/highlight_spec.lua b/test/functional/ui/highlight_spec.lua index 5c0804a5d4..727dc38829 100644 --- a/test/functional/ui/highlight_spec.lua +++ b/test/functional/ui/highlight_spec.lua @@ -35,6 +35,7 @@ describe('highlight: `:syntax manual`', function() screen:set_default_attr_ids({ [0] = { bold = true, foreground = Screen.colors.Blue }, [1] = { bold = true, foreground = Screen.colors.Brown }, + [2] = { foreground = Screen.colors.Magenta1 }, }) end) @@ -56,7 +57,7 @@ describe('highlight: `:syntax manual`', function() command('bn') feed_command('bp') screen:expect([[ - {1:^echo} 1 | + {1:^echo} {2:1} | {0:~ }|*3 :bp | ]]) @@ -78,7 +79,7 @@ describe('highlight: `:syntax manual`', function() feed_command('silent bp') eq('Xtest-functional-ui-highlight.tmp.vim', eval("fnamemodify(bufname('%'), ':t')")) screen:expect([[ - {1:^echo} 1 | + {1:^echo} {2:1} | {0:~ }|*3 :silent bp | ]]) |