]> git.eshelyaron.com Git - emacs.git/commitdiff
typescript-ts-mode: Add missing 'operator' to treesit-font-lock-features
authornverno <noah.v.peart@gmail.com>
Fri, 24 Nov 2023 15:18:26 +0000 (07:18 -0800)
committerDmitry Gutov <dmitry@gutov.dev>
Fri, 24 Nov 2023 18:40:34 +0000 (20:40 +0200)
* lisp/progmodes/typescript-ts-mode.el (typescript-ts-mode):
Add operator to treesit-font-lock-feature-list (bug#67433).

lisp/progmodes/typescript-ts-mode.el

index 4e039abd236273059cd89710afd3ad6a1fb9a659..a2b16d1beea9208131bda2855dabb3c9d4b74b29 100644 (file)
@@ -428,7 +428,7 @@ This mode is intended to be inherited by concrete major modes."
                 '((comment declaration)
                   (keyword string escape-sequence)
                   (constant expression identifier number pattern property)
-                  (function bracket delimiter)))
+                  (operator function bracket delimiter)))
     (setq-local syntax-propertize-function #'typescript-ts--syntax-propertize)
 
     (treesit-major-mode-setup)))