diff options
| author | Pham Huy Hoang <hoangtun0810@gmail.com> | 2024-01-06 15:05:50 +0900 |
|---|---|---|
| committer | Christian Clason <c.clason@uni-graz.at> | 2024-01-19 16:58:37 +0100 |
| commit | 57a8acf0c4ed5e7f6dda83c3f9b073f8a99a70f9 (patch) | |
| tree | 70bf645539882b88e6fa129cefd30986b89bbac3 /queries/pod | |
| parent | ci: add query lint job (diff) | |
| download | nvim-treesitter-57a8acf0c4ed5e7f6dda83c3f9b073f8a99a70f9.tar nvim-treesitter-57a8acf0c4ed5e7f6dda83c3f9b073f8a99a70f9.tar.gz nvim-treesitter-57a8acf0c4ed5e7f6dda83c3f9b073f8a99a70f9.tar.bz2 nvim-treesitter-57a8acf0c4ed5e7f6dda83c3f9b073f8a99a70f9.tar.lz nvim-treesitter-57a8acf0c4ed5e7f6dda83c3f9b073f8a99a70f9.tar.xz nvim-treesitter-57a8acf0c4ed5e7f6dda83c3f9b073f8a99a70f9.tar.zst nvim-treesitter-57a8acf0c4ed5e7f6dda83c3f9b073f8a99a70f9.zip | |
chore: query formatting
Diffstat (limited to 'queries/pod')
| -rw-r--r-- | queries/pod/highlights.scm | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/queries/pod/highlights.scm b/queries/pod/highlights.scm index e5a192620..6e4779c85 100644 --- a/queries/pod/highlights.scm +++ b/queries/pod/highlights.scm @@ -1,8 +1,9 @@ ; A highlight file for nvim-treesitter to use - -[(pod_command) - (command) - (cut_command)] @keyword +[ + (pod_command) + (command) + (cut_command) +] @keyword ((command_paragraph (command) @keyword @@ -29,13 +30,15 @@ (#lua-match? @keyword "^=encoding") (content) @string.special) - -(verbatim_paragraph (content) @markup.raw) +(verbatim_paragraph + (content) @markup.raw) (interior_sequence (sequence_letter) @character - ["<" ">"] @punctuation.delimiter -) + [ + "<" + ">" + ] @punctuation.delimiter) (interior_sequence (sequence_letter) @character |
