Variable: typescript-ts-mode--keywords

typescript-ts-mode--keywords is a variable defined in typescript-ts-mode.el.gz.

Value

("!" "abstract" "as" "async" "await" "break" "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"
 "infer" "keyof" "let" "namespace" "new" "of" "private" "protected"
 "public" "readonly" "return" "satisfies" "set" "static" "switch"
 "target" "throw" "try" "type" "typeof" "var" "void" "while" "with"
 "yield")

Documentation

TypeScript keywords for tree-sitter font-locking.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/typescript-ts-mode.el.gz
(defvar typescript-ts-mode--keywords
  '("!" "abstract" "as" "async" "await" "break"
    "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" "infer"
    "keyof" "let" "namespace" "new" "of" "private" "protected"
    "public" "readonly" "return" "satisfies" "set" "static" "switch"
    "target" "throw" "try" "type" "typeof" "var" "void"
    "while" "with" "yield")
  "TypeScript keywords for tree-sitter font-locking.")