]> git.eshelyaron.com Git - emacs.git/commitdiff
Add type_predicate 'is' as keyword in typescript-ts-mode (bug#63810)
authorTheodor Thornhill <theo@thornhill.no>
Wed, 31 May 2023 18:47:06 +0000 (20:47 +0200)
committerTheodor Thornhill <theo@thornhill.no>
Wed, 31 May 2023 18:47:06 +0000 (20:47 +0200)
* lisp/progmodes/typescript-ts-mode.el (typescript-ts-mode--keywords):
New keyword 'is'.

lisp/progmodes/typescript-ts-mode.el

index 11f20add3ee1da515e56fa8dec8fde11e455eaf1..e30eb88026696eb12510a26a75db54ce6c4f4728 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"
+    "get" "if" "implements" "import" "in" "instanceof" "interface" "is"
     "keyof" "let" "namespace" "new" "of" "private" "protected"
     "public" "readonly" "return" "set" "static" "switch"
     "target" "throw" "try" "type" "typeof" "var" "void"