diff options
| author | Christian Clason <c.clason@uni-graz.at> | 2024-07-28 12:13:10 +0200 |
|---|---|---|
| committer | Christian Clason <c.clason@uni-graz.at> | 2024-07-28 16:13:11 +0200 |
| commit | 9e80738f3073e6dc95ebefee60526c7c1499d7d2 (patch) | |
| tree | 9ef3cc1ef1bec39cd1b3eebf3df1eea12e9c74af /runtime/queries/markdown | |
| parent | bdff50dee56ebf6de58d58315920abf2f8e262f7 (diff) | |
| download | rneovim-9e80738f3073e6dc95ebefee60526c7c1499d7d2.tar.gz rneovim-9e80738f3073e6dc95ebefee60526c7c1499d7d2.tar.bz2 rneovim-9e80738f3073e6dc95ebefee60526c7c1499d7d2.zip | |
fix(runtime): sync bundled treesitter queries
Diffstat (limited to 'runtime/queries/markdown')
| -rw-r--r-- | runtime/queries/markdown/highlights.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/queries/markdown/highlights.scm b/runtime/queries/markdown/highlights.scm index a9ce4df200..a12669ca2b 100644 --- a/runtime/queries/markdown/highlights.scm +++ b/runtime/queries/markdown/highlights.scm @@ -45,7 +45,7 @@ (indented_code_block) @markup.raw.block ((fenced_code_block) @markup.raw.block - (#set! "priority" 90)) + (#set! priority 90)) (fenced_code_block (fenced_code_block_delimiter) @markup.raw.block @@ -103,13 +103,13 @@ (task_list_marker_checked) @markup.list.checked ((block_quote) @markup.quote - (#set! "priority" 90)) + (#set! priority 90)) ([ (plus_metadata) (minus_metadata) ] @keyword.directive - (#set! "priority" 90)) + (#set! priority 90)) [ (block_continuation) |