aboutsummaryrefslogtreecommitdiff
path: root/runtime/queries/pod
diff options
context:
space:
mode:
authorblinxen2024-01-25 05:12:17 +0000
committerGitHub2024-01-25 05:12:17 +0000
commit2661e05b3405c216a2303c20e71830b4bde7ac35 (patch)
tree692ecd0b9d7f3d358d21fc1800cf6eafeb5bded5 /runtime/queries/pod
parentd8b8d2fda6a10f25c9704fc95c069a4c457752e6 (diff)
Update some grammars to a commit where the license file is included (#9279)
Co-authored-by: Blaž Hrastnik <blaz@mxxn.io> Co-authored-by: Michael Davis <mcarsondavis@gmail.com>
Diffstat (limited to 'runtime/queries/pod')
-rw-r--r--runtime/queries/pod/highlights.scm122
1 files changed, 79 insertions, 43 deletions
diff --git a/runtime/queries/pod/highlights.scm b/runtime/queries/pod/highlights.scm
index e8bd4b54..d88d9ffa 100644
--- a/runtime/queries/pod/highlights.scm
+++ b/runtime/queries/pod/highlights.scm
@@ -1,61 +1,97 @@
-[(pod_directive)
- (head_directive)
- (over_directive)
- (item_directive)
- (back_directive)
- (encoding_directive)
- (cut_directive)] @tag
-
-(head_paragraph
- (head_directive) @directive
- (#eq? @directive "=head1")
+; A highlight file for nvim-treesitter to use
+
+[(pod_command)
+ (command)
+ (cut_command)] @keyword
+
+(command_paragraph
+ (command) @keyword
+ (#eq? @keyword "=head1")
(content) @markup.heading.1)
-(head_paragraph
- (head_directive) @directive
- (#eq? @directive "=head2")
+
+(command_paragraph
+ (command) @keyword
+ (#eq? @keyword "=head2")
(content) @markup.heading.2)
-(head_paragraph
- (head_directive) @directive
- (#eq? @directive "=head3")
+
+(command_paragraph
+ (command) @keyword
+ (#eq? @keyword "=head3")
(content) @markup.heading.3)
-(head_paragraph
- (head_directive) @directive
- (#eq? @directive "=head4")
+
+(command_paragraph
+ (command) @keyword
+ (#eq? @keyword "=head4")
(content) @markup.heading.4)
-(head_paragraph
- (head_directive) @directive
- (#eq? @directive "=head5")
+
+(command_paragraph
+ (command) @keyword
+ (#eq? @keyword "=head5")
(content) @markup.heading.5)
-(head_paragraph
- (head_directive) @directive
- (#eq? @directive "=head6")
+
+(command_paragraph
+ (command) @keyword
+ (#eq? @keyword "=head6")
(content) @markup.heading.6)
-(over_paragraph (content) @constant.numeric.integer)
-(item_paragraph (content) @markup.list)
-(encoding_paragraph (content) @string)
+(command_paragraph
+ (command) @keyword
+ (#match? @keyword "^=over")
+ (content) @constant.numeric)
+
+(command_paragraph
+ (command) @keyword
+ (#match? @keyword "^=item")
+ (content) @markup)
+
+(command_paragraph
+ (command) @keyword
+ (#match? @keyword "^=encoding")
+ (content) @string.special)
+
+(command_paragraph
+ (command) @keyword
+ (#not-match? @keyword "^=(head|over|item|encoding)")
+ (content) @string)
(verbatim_paragraph (content) @markup.raw)
-(interior_sequence) @tag
+(interior_sequence
+ (sequence_letter) @constant.character
+ ["<" ">"] @punctuation.delimiter
+)
(interior_sequence
- (sequence_letter) @letter
- (#eq? @letter "B")
+ (sequence_letter) @character
+ (#eq? @character "B")
(content) @markup.bold)
+
(interior_sequence
- (sequence_letter) @letter
- (#eq? @letter "C")
- (content) @markup.raw)
+ (sequence_letter) @character
+ (#eq? @character "C")
+ (content) @markup.literal)
+
(interior_sequence
- (sequence_letter) @letter
- (#eq? @letter "F")
- (content) @markup.italic)
+ (sequence_letter) @character
+ (#eq? @character "F")
+ (content) @markup.underline @string.special)
+
(interior_sequence
- (sequence_letter) @letter
- (#eq? @letter "I")
- (content) @markup.italic)
+ (sequence_letter) @character
+ (#eq? @character "I")
+ (content) @markup.bold)
+
(interior_sequence
- (sequence_letter) @letter
- (#eq? @letter "L")
+ (sequence_letter) @character
+ (#eq? @character "L")
(content) @markup.link.url)
+
+(interior_sequence
+ (sequence_letter) @character
+ (#eq? @character "X")
+ (content) @markup.reference)
+
+(interior_sequence
+ (sequence_letter) @character
+ (#eq? @character "E")
+ (content) @string.special.escape)