diff options
author | Theodor Thornhill <theo@thornhill.no> | 2023-06-06 06:26:43 +0200 |
---|---|---|
committer | Theodor Thornhill <theo@thornhill.no> | 2023-06-06 06:27:35 +0200 |
commit | 07c8211ca3075d57dc669946fc4670bb94b79983 (patch) | |
tree | 535c4c08b0c5585c7b153f10c2d5b2a91a7b37ff /lisp | |
parent | dd2d8ff2f5cf5f495a793c7db0a168474a339613 (diff) | |
download | emacs-07c8211ca3075d57dc669946fc4670bb94b79983.tar.gz emacs-07c8211ca3075d57dc669946fc4670bb94b79983.tar.bz2 emacs-07c8211ca3075d57dc669946fc4670bb94b79983.zip |
Add 'infer' as a keyword to typescript-ts-mode (bug#63880)
* lisp/progmodes/typescript-ts-mode.el (typescript-ts-mode--keywords):
New keyword.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/progmodes/typescript-ts-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/typescript-ts-mode.el b/lisp/progmodes/typescript-ts-mode.el index 09e04f0cd0e..1c19a031878 100644 --- a/lisp/progmodes/typescript-ts-mode.el +++ b/lisp/progmodes/typescript-ts-mode.el @@ -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" |