]> git.eshelyaron.com Git - emacs.git/commitdiff
Add 'infer' as a keyword to typescript-ts-mode (bug#63880)
authorTheodor Thornhill <theo@thornhill.no>
Tue, 6 Jun 2023 04:26:43 +0000 (06:26 +0200)
committerTheodor Thornhill <theo@thornhill.no>
Tue, 6 Jun 2023 04:27:35 +0000 (06:27 +0200)
* lisp/progmodes/typescript-ts-mode.el (typescript-ts-mode--keywords):
New keyword.

lisp/progmodes/typescript-ts-mode.el

index 09e04f0cd0e0326cf2497a804faacaa4f3017c67..1c19a031878e9db5fbc89024886353718b21818b 100644 (file)
@@ -128,7 +128,7 @@ Argument LANGUAGE is either `typescript' or `tsx'."
     "case" "catch" "class" "const" "continue" "debugger"
     "declare" "default" "delete" "do" "else" "enum"
     "export" "extends" "finally" "for" "from" "function"
-    "get" "if" "implements" "import" "in" "instanceof" "interface" "is"
+    "get" "if" "implements" "import" "in" "instanceof" "interface" "is" "infer"
     "keyof" "let" "namespace" "new" "of" "private" "protected"
     "public" "readonly" "return" "set" "static" "switch"
     "target" "throw" "try" "type" "typeof" "var" "void"