Variable: typescript-ts-mode--sexp-nodes

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

Value

("expression" "pattern" "array" "function" "string" "escape"
 "template" "regex" "number" "identifier" "this" "super" "true"
 "false" "null" "undefined" "arguments" "pair")

Documentation

Nodes that designate sexps in TypeScript.

See treesit-thing-settings for more information.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/typescript-ts-mode.el.gz
(defvar typescript-ts-mode--sexp-nodes
  '("expression"
    "pattern"
    "array"
    "function"
    "string"
    "escape"
    "template"
    "regex"
    "number"
    "identifier"
    "this"
    "super"
    "true"
    "false"
    "null"
    "undefined"
    "arguments"
    "pair")
  "Nodes that designate sexps in TypeScript.
See `treesit-thing-settings' for more information.")