Skip to content

Commit 3cfca10

Browse files
committed
Add support for various treesitter based modes
This commit adds support for c-ts-mode, python-ts-mode and rust-ts-mode. These modes are builtin modes included in GNU Emacs since 29.1
1 parent 281abda commit 3cfca10

File tree

1 file changed

+32
-3
lines changed

1 file changed

+32
-3
lines changed

electric-operator.el

+32-3
Original file line numberDiff line numberDiff line change
@@ -588,6 +588,7 @@ Any better ideas would be welcomed."
588588

589589
)
590590

591+
(apply #'electric-operator-add-rules-for-mode 'c-ts-mode (electric-operator-get-rules-for-mode 'c-mode))
591592

592593
;; Use the same rules for c++
593594
(apply #'electric-operator-add-rules-for-mode 'c++-mode (electric-operator-get-rules-for-mode 'c-mode))
@@ -650,6 +651,26 @@ could be added here.")
650651
;; Check for any user-defined types
651652
(electric-operator-looking-back-locally electric-operator-c-user-types-regex)))
652653

654+
(defun electric-operator-c-ts-is-function-parameter? ()
655+
"Try to guess if we are in function definition/declaration
656+
657+
Using `c-ts-mode''s treesitter analysis."
658+
(let ((node nil)
659+
(value nil))
660+
(if (and (fboundp 'treesit-node-at)
661+
(fboundp 'treesit-node-top-level)
662+
(fboundp 'treesit-node-start)
663+
(fboundp 'treesit-node-end))
664+
(progn
665+
(setq node (treesit-node-at (point)))
666+
(when (and (treesit-node-top-level node "^parameter_list$")
667+
(treesit-node-top-level node "^function_declarator$"))
668+
(setq node (treesit-node-top-level node "^parameter_list$"))
669+
(setq value (list (treesit-node-start node) (treesit-node-end node)))
670+
(and (> (point) (nth 0 value))
671+
(<= (point) (nth 1 value)))))
672+
nil)))
673+
653674
(defvar electric-operator-c-function-definition-syntax-list
654675
'(topmost-intro
655676
topmost-intro-cont
@@ -666,9 +687,11 @@ Using `cc-mode''s syntactic analysis."
666687
;; There are similar but different symbols for objective-C, but I'm not
667688
;; going to try to support that now.
668689

669-
(--> (c-guess-basic-syntax)
670-
(-map #'car it)
671-
(-intersection electric-operator-c-function-definition-syntax-list it)))
690+
(if (derived-mode-p 'c-ts-mode 'c++-ts-mode)
691+
(electric-operator-c-ts-is-function-parameter?)
692+
(--> (c-guess-basic-syntax)
693+
(-map #'car it)
694+
(-intersection electric-operator-c-function-definition-syntax-list it))))
672695

673696
(defun electric-operator-c-mode-include-line-opening-quote? ()
674697
(electric-operator-looking-back-locally "#\\s-*include\\s-*"))
@@ -859,6 +882,7 @@ Also handles C++ lambda capture by reference."
859882
)
860883

861884
(apply #'electric-operator-add-rules-for-mode 'inferior-python-mode (electric-operator-get-rules-for-mode 'python-mode))
885+
(apply #'electric-operator-add-rules-for-mode 'python-ts-mode (electric-operator-get-rules-for-mode 'python-mode))
862886

863887
(defun electric-operator-python-mode-in-lambda-args? ()
864888
"Are we inside the arguments statement of a lambda?"
@@ -988,6 +1012,9 @@ Also handles C++ lambda capture by reference."
9881012
;; pointer deref vs multiplication
9891013
(cons "*" nil)
9901014

1015+
(cons ":" ": ")
1016+
(cons "::" "::")
1017+
9911018
(cons "/" #'electric-operator-prog-mode-/)
9921019
(cons "/*" " /* ")
9931020
(cons "//" " // ")
@@ -1001,6 +1028,8 @@ Also handles C++ lambda capture by reference."
10011028
;; Bar is used for lambdas as well as or
10021029
(cons "|" nil))
10031030

1031+
(apply #'electric-operator-add-rules-for-mode 'rust-ts-mode (electric-operator-get-rules-for-mode 'rust-mode))
1032+
10041033

10051034

10061035
;; R tweaks (ess mode)

0 commit comments

Comments
 (0)