summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lisp/progmodes/typescript-ts-mode.el14
1 files changed, 7 insertions, 7 deletions
diff --git a/lisp/progmodes/typescript-ts-mode.el b/lisp/progmodes/typescript-ts-mode.el
index e708e38195d..c92c072515e 100644
--- a/lisp/progmodes/typescript-ts-mode.el
+++ b/lisp/progmodes/typescript-ts-mode.el
@@ -421,7 +421,7 @@ Argument LANGUAGE is either `typescript' or `tsx'."
(keyword string escape-sequence)
(constant expression identifier number pattern property)
(function bracket delimiter)))
- (setq-local syntax-propertize-function #'ts-ts--syntax-propertize)
+ (setq-local syntax-propertize-function #'typescript-ts--syntax-propertize)
(treesit-major-mode-setup)))
@@ -472,7 +472,7 @@ at least 3 (which is the default value)."
(treesit-major-mode-setup)))
-(defvar ts-ts--s-p-query
+(defvar typescript-ts--s-p-query
(when (treesit-available-p)
(treesit-query-compile 'typescript
'(((regex pattern: (regex_pattern) @regexp))))))
@@ -487,15 +487,15 @@ at least 3 (which is the default value)."
((parenthesized_expression (jsx_element) @jsx))
((return_statement (jsx_element) @jsx))))))
-(defun ts-ts--syntax-propertize (beg end)
- (let ((captures (treesit-query-capture 'typescript ts-ts--s-p-query beg end)))
- (ts-ts--syntax-propertize-captures captures)))
+(defun typescript-ts--syntax-propertize (beg end)
+ (let ((captures (treesit-query-capture 'typescript typescript-ts--s-p-query beg end)))
+ (tsx-ts--syntax-propertize-captures captures)))
(defun tsx-ts--syntax-propertize (beg end)
(let ((captures (treesit-query-capture 'tsx tsx-ts--s-p-query beg end)))
- (ts-ts--syntax-propertize-captures captures)))
+ (tsx-ts--syntax-propertize-captures captures)))
-(defun ts-ts--syntax-propertize-captures (captures)
+(defun tsx-ts--syntax-propertize-captures (captures)
(pcase-dolist (`(,name . ,node) captures)
(let* ((ns (treesit-node-start node))
(ne (treesit-node-end node))