diff options
author | Christian Clason <c.clason@uni-graz.at> | 2023-03-31 17:09:00 +0200 |
---|---|---|
committer | Christian Clason <c.clason@uni-graz.at> | 2023-04-01 15:07:16 +0200 |
commit | d7f7450017b9b05303698a6cda54303ef22c63b3 (patch) | |
tree | e6b48fffc27a65f3cb4389741926933e4dec81d3 /runtime/queries/help | |
parent | 2a298f2e48eb081f2e3b58068af589b82fe76a18 (diff) | |
download | rneovim-d7f7450017b9b05303698a6cda54303ef22c63b3.tar.gz rneovim-d7f7450017b9b05303698a6cda54303ef22c63b3.tar.bz2 rneovim-d7f7450017b9b05303698a6cda54303ef22c63b3.zip |
refactor(treesitter)!: rename help parser to vimdoc
Diffstat (limited to 'runtime/queries/help')
-rw-r--r-- | runtime/queries/help/highlights.scm | 25 | ||||
-rw-r--r-- | runtime/queries/help/injections.scm | 4 |
2 files changed, 0 insertions, 29 deletions
diff --git a/runtime/queries/help/highlights.scm b/runtime/queries/help/highlights.scm deleted file mode 100644 index c0d88301bc..0000000000 --- a/runtime/queries/help/highlights.scm +++ /dev/null @@ -1,25 +0,0 @@ -(h1) @text.title -(h2) @text.title -(h3) @text.title -(column_heading) @text.title -(column_heading - "~" @conceal (#set! conceal "")) -(tag - "*" @conceal (#set! conceal "") - text: (_) @label) -(taglink - "|" @conceal (#set! conceal "") - text: (_) @text.reference) -(optionlink - text: (_) @text.reference) -(codespan - "`" @conceal (#set! conceal "") - text: (_) @text.literal) -(codeblock) @text.literal -(codeblock - [">" (language)] @conceal (#set! conceal "")) -(block - "<" @conceal (#set! conceal "")) -(argument) @parameter -(keycode) @string.special -(url) @text.uri diff --git a/runtime/queries/help/injections.scm b/runtime/queries/help/injections.scm deleted file mode 100644 index 260a05d863..0000000000 --- a/runtime/queries/help/injections.scm +++ /dev/null @@ -1,4 +0,0 @@ -((codeblock - (language) @injection.language - (code) @injection.content) - (#set! injection.include-children)) |