diff options
author | Evgeni Chasnovski <evgeni.chasnovski@gmail.com> | 2024-01-25 13:28:26 +0200 |
---|---|---|
committer | Christian Clason <c.clason@uni-graz.at> | 2024-01-25 18:19:15 +0100 |
commit | 3ab6f60dc80d36f968102ba14b7c4ec96efeb56d (patch) | |
tree | ee46355e5501ea4a17def679171e3b1b29349f95 /test/functional/treesitter/highlight_spec.lua | |
parent | e8aec1ecc5ae462c58957e192d4aedc0c54871a6 (diff) | |
download | rneovim-3ab6f60dc80d36f968102ba14b7c4ec96efeb56d.tar.gz rneovim-3ab6f60dc80d36f968102ba14b7c4ec96efeb56d.tar.bz2 rneovim-3ab6f60dc80d36f968102ba14b7c4ec96efeb56d.zip |
fix(runtime): update 'vim' color scheme to use new tree-sitter groups
Diffstat (limited to 'test/functional/treesitter/highlight_spec.lua')
-rw-r--r-- | test/functional/treesitter/highlight_spec.lua | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/test/functional/treesitter/highlight_spec.lua b/test/functional/treesitter/highlight_spec.lua index 2efdad1efa..932af0332b 100644 --- a/test/functional/treesitter/highlight_spec.lua +++ b/test/functional/treesitter/highlight_spec.lua @@ -745,7 +745,6 @@ describe('treesitter highlighting (help)', function() [3] = { bold = true, foreground = Screen.colors.Brown }, [4] = { foreground = Screen.colors.Cyan4 }, [5] = { foreground = Screen.colors.Magenta1 }, - [6] = { foreground = Screen.colors.SlateBlue }, } end) @@ -764,10 +763,10 @@ describe('treesitter highlighting (help)', function() screen:expect { grid = [[ - {6:>ruby} | - {6: -- comment} | - {6: local this_is = 'actually_lua'} | - {6:<} | + {1:>ruby} | + {1: -- comment} | + {1: local this_is = 'actually_lua'} | + {1:<} | ^ | | ]], @@ -777,10 +776,10 @@ describe('treesitter highlighting (help)', function() screen:expect { grid = [[ - {6:>lua} | - {6: }{1:-- comment} | - {6: }{3:local}{6: }{4:this_is}{6: }{3:=}{6: }{5:'actually_lua'} | - {6:<} | + {1:>lua} | + {1: -- comment} | + {1: }{3:local}{1: }{4:this_is}{1: }{3:=}{1: }{5:'actually_lua'} | + {1:<} | ^ | | ]], @@ -790,10 +789,10 @@ describe('treesitter highlighting (help)', function() screen:expect { grid = [[ - {6:>ruby} | - {6: -- comment} | - {6: local this_is = 'actually_lua'} | - {6:<} | + {1:>ruby} | + {1: -- comment} | + {1: local this_is = 'actually_lua'} | + {1:<} | ^ | | ]], |