Skip to content

Commit

Permalink
feat(hl): Add keyword repeat and conditional
Browse files Browse the repository at this point in the history
  • Loading branch information
jcs090218 committed May 12, 2024
1 parent 210983b commit 02fe7b8
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions lisp/tree-sitter-hl.el
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,16 @@
"Face for keywords."
:group 'tree-sitter-hl-faces)

(defface tree-sitter-hl-face:keyword.conditional
'((default :inherit font-lock-keyword-face))
"Face for conditional keyword."
:group 'tree-sitter-hl-faces)

(defface tree-sitter-hl-face:keyword.repeat
'((default :inherit font-lock-keyword-face))
"Face for repeat keyword."
:group 'tree-sitter-hl-faces)

(defface tree-sitter-hl-face:keyword.directive
'((default :inherit font-lock-keyword-face))
"Face for directive keyword."
Expand Down

0 comments on commit 02fe7b8

Please sign in to comment.