Skip to content

Commit

Permalink
fix: correct variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyure-A committed Mar 16, 2024
1 parent e0f2bea commit 2923c15
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions satysfi-ts-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
"]")
"List of brackets used in the text of SATySFi.")

(defvar satysfi-ts-mode--operator
(defvar satysfi-ts-mode--operators
'("?:"
"?->"
"->"
Expand All @@ -107,7 +107,7 @@
"!")
"List of operators used in the text of SATySFi.")

(defvar satysfi-ts-mode--include
(defvar satysfi-ts-mode--includes
'("@stage:"
"@require:"
"@import:")
Expand Down Expand Up @@ -161,7 +161,7 @@

:language 'satysfi
:feature 'include
`([,@satysfi-ts-mode--include] @font-lock-builtin-face)
`([,@satysfi-ts-mode--includes] @font-lock-builtin-face)

:language 'satysfi
:feature 'keyword
Expand All @@ -179,7 +179,7 @@

:language 'satysfi
:feature 'operator
`([,@satysfi-ts-mode--operator (binary_operator)] @font-lock-operator-face
`([,@satysfi-ts-mode--operators (binary_operator)] @font-lock-operator-face
;; expr
(math_token ["^" "_"] @font-lock-operator-face))

Expand Down

0 comments on commit 2923c15

Please sign in to comment.