diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2021-07-29 23:31:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-29 23:31:57 +0200 |
commit | d628e4250fc5f7dfc3fe1bd537ce38b6171c138c (patch) | |
tree | 270f9aba2590b2434a3008893f7dbb2c51a31c96 /test/functional/ui/cmdline_spec.lua | |
parent | b73e733d529266ef350f71fa896d16e44cc83f78 (diff) | |
parent | cab90f2ef1f3f60786a1f223fb7c2582aac1773a (diff) | |
download | rneovim-d628e4250fc5f7dfc3fe1bd537ce38b6171c138c.tar.gz rneovim-d628e4250fc5f7dfc3fe1bd537ce38b6171c138c.tar.bz2 rneovim-d628e4250fc5f7dfc3fe1bd537ce38b6171c138c.zip |
Merge pull request #15207 from gpanders/bye-syncolor
fix(highlight): remove syncolor.vim
Diffstat (limited to 'test/functional/ui/cmdline_spec.lua')
-rw-r--r-- | test/functional/ui/cmdline_spec.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/functional/ui/cmdline_spec.lua b/test/functional/ui/cmdline_spec.lua index 0ea8bab957..ad23402ff9 100644 --- a/test/functional/ui/cmdline_spec.lua +++ b/test/functional/ui/cmdline_spec.lua @@ -14,6 +14,8 @@ local function new_screen(opt) [3] = {bold = true, reverse = true}, [4] = {foreground = Screen.colors.Grey100, background = Screen.colors.Red}, [5] = {bold = true, foreground = Screen.colors.SeaGreen4}, + [6] = {foreground = Screen.colors.Magenta}, + [7] = {bold = true, foreground = Screen.colors.Brown}, }) return screen end @@ -267,7 +269,7 @@ local function test_cmdline(linegrid) special = {'"', true}, }, { firstc = "=", - content = {{"1"}, {"+"}, {"2"}}, + content = {{"1", 6}, {"+", 7}, {"2", 6}}, pos = 3, }} |