File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,8 @@ function M.link_ts_highlights()
18
18
OrgTSHeadlineLevel8 = ' OrgHeadlineLevel8' ,
19
19
OrgTSBullet = ' Identifier' ,
20
20
OrgTSCheckbox = ' PreProc' ,
21
+ orgTSSubscript = ' Comment' ,
22
+ orgTSSuperscript = ' Comment' ,
21
23
OrgTSCheckboxHalfChecked = ' OrgTSCheckbox' ,
22
24
OrgTSCheckboxUnchecked = ' OrgTSCheckbox' ,
23
25
OrgTSCheckboxChecked = ' OrgTSCheckbox' ,
Original file line number Diff line number Diff line change 1
1
((timestamp) @timestamp (#match? @timestamp "^\\<.*$")) @OrgTSTimestampActive
2
2
((timestamp) @timestamp_inactive (#match? @timestamp_inactive "^\\[.*$")) @OrgTSTimestampInactive
3
- ; ((markup) @markup_bold (#match? @markup_bold "^\\s*\\*.*\\*$")) @text.strong
4
- ; ((markup) @markup_italic (#match? @markup_italic "^\\s*\\/.*\\/$")) @text.emphasis
5
- ; ((markup) @markup_underline (#match? @markup_underline "^\\s*_.*_$")) @TSUnderline
6
- ; ((markup) @markup_code (#match? @markup_code "^\\s*\\~.*\\~$")) @String
7
- ; ((markup) @markup_verbatim (#match? @markup_verbatim "^\\s*\\=.*\\=$")) @String
8
- ; ((markup) @markup_strike (#match? @markup_strike "^\\s*\\+.*\\+$")) @text.strike
9
3
(headline (stars) @stars (#eq? @stars "*")) @OrgTSHeadlineLevel 1
10
4
(headline (stars) @stars (#eq? @stars "**")) @OrgTSHeadlineLevel 2
11
5
(headline (stars) @stars (#eq? @stars "***")) @OrgTSHeadlineLevel 3
14
8
(headline (stars) @stars (#eq? @stars "******")) @OrgTSHeadlineLevel 6
15
9
(headline (stars) @stars (#eq? @stars "*******")) @OrgTSHeadlineLevel 7
16
10
(headline (stars) @stars (#eq? @stars "********")) @OrgTSHeadlineLevel 8
11
+ (subscript) @OrgTSSubscript
12
+ (superscript) @OrgTSSuperscript
17
13
(bullet) @OrgTSBullet
18
14
(checkbox) @OrgTSCheckbox
19
15
((checkbox) @check (#eq? @check "\[-\]")) @OrgTSCheckboxHalfChecked
You can’t perform that action at this time.
0 commit comments