aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/progmodes/java-ts-mode.el19
1 files changed, 9 insertions, 10 deletions
diff --git a/lisp/progmodes/java-ts-mode.el b/lisp/progmodes/java-ts-mode.el
index ca169543b5a..c4b2282b574 100644
--- a/lisp/progmodes/java-ts-mode.el
+++ b/lisp/progmodes/java-ts-mode.el
@@ -180,17 +180,16 @@ PARENT and BOL are the as in other matchers."
180 "Tree-sitter indent rules.") 180 "Tree-sitter indent rules.")
181 181
182(defvar java-ts-mode--keywords 182(defvar java-ts-mode--keywords
183 '("abstract" "assert" "break" "case" "catch" 183 '("abstract" "assert" "break"
184 "class" "continue" "default" "do" "else" 184 "case" "catch" "class" "continue" "default" "do"
185 "enum" "exports" "extends" "final" "finally" 185 "else" "enum" "exports" "extends" "final" "finally"
186 "for" "if" "implements" "import" "instanceof" 186 "for" "if" "implements" "import" "instanceof"
187 "interface" "module" "native" "new" "non-sealed" 187 "interface" "long" "module" "native" "new" "non-sealed"
188 "open" "opens" "package" "private" "protected" 188 "open" "opens" "package" "permits" "private" "protected"
189 "provides" "public" "requires" "return" "sealed" 189 "provides" "public" "record" "requires" "return" "sealed"
190 "static" "strictfp" "switch" "synchronized" 190 "short" "static" "strictfp" "switch" "synchronized"
191 "throw" "throws" "to" "transient" "transitive" 191 "throw" "throws" "to" "transient" "transitive" "try"
192 "try" "uses" "volatile" "while" "with" "record" 192 "uses" "volatile" "when" "while" "with" "yield")
193 "@interface")
194 "Java keywords for tree-sitter font-locking.") 193 "Java keywords for tree-sitter font-locking.")
195 194
196(defvar java-ts-mode--operators 195(defvar java-ts-mode--operators