aboutsummaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorChristian Clason <c.clason@uni-graz.at>2023-04-01 12:11:24 +0200
committerChristian Clason <c.clason@uni-graz.at>2023-04-01 12:19:15 +0200
commit90fdaf55c913d07bc80eec6442b02d8c001659b4 (patch)
tree6d6e18b4e84a227526a5c9551476686d387eba8e /runtime
parentdee559d7440e3048790c6798bdb5ed89f8cdea30 (diff)
downloadrneovim-90fdaf55c913d07bc80eec6442b02d8c001659b4.tar.gz
rneovim-90fdaf55c913d07bc80eec6442b02d8c001659b4.tar.bz2
rneovim-90fdaf55c913d07bc80eec6442b02d8c001659b4.zip
fix(tests): adapt treesitter/highlight_spec priority test
Still relied on the old `@Foo`->`Foo` capture to highlight mechanism; use capture with default highlight instead.
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/treesitter.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/doc/treesitter.txt b/runtime/doc/treesitter.txt
index 96021d6272..51098b9220 100644
--- a/runtime/doc/treesitter.txt
+++ b/runtime/doc/treesitter.txt
@@ -440,7 +440,7 @@ higher than tree-sitter. It is also possible to change the priority of an
individual query pattern manually by setting its `"priority"` metadata
attribute: >
- (super_important_node) @ImportantHighlight (#set! "priority" 105)
+ ((super_important_node) @superimportant (#set! "priority" 105))
==============================================================================
TREESITTER LANGUAGE INJECTIONS *treesitter-language-injections*