aboutsummaryrefslogtreecommitdiff
path: root/runtime/queries/pod/highlights.scm
blob: d88d9ffa75c787a0bbe3e652e8fe74b0b5430257 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
; 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)

(command_paragraph
  (command) @keyword
  (#eq? @keyword "=head2")
  (content) @markup.heading.2)

(command_paragraph
  (command) @keyword
  (#eq? @keyword "=head3")
  (content) @markup.heading.3)

(command_paragraph
  (command) @keyword
  (#eq? @keyword "=head4")
  (content) @markup.heading.4)

(command_paragraph
  (command) @keyword
  (#eq? @keyword "=head5")
  (content) @markup.heading.5)

(command_paragraph
  (command) @keyword
  (#eq? @keyword "=head6")
  (content) @markup.heading.6)

(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
  (sequence_letter) @constant.character
  ["<" ">"] @punctuation.delimiter
)

(interior_sequence
  (sequence_letter) @character
  (#eq? @character "B")
  (content) @markup.bold)

(interior_sequence
  (sequence_letter) @character
  (#eq? @character "C")
  (content) @markup.literal)

(interior_sequence
  (sequence_letter) @character
  (#eq? @character "F")
  (content) @markup.underline @string.special)

(interior_sequence
  (sequence_letter) @character
  (#eq? @character "I")
  (content) @markup.bold)

(interior_sequence
  (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)