Skip to content

Commit 1e07208

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 1e07208

File tree

1 file changed

+48
-3
lines changed

1 file changed

+48
-3
lines changed

electric-operator.el

+48-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,20 @@ 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+
(require 'treesit nil t)
659+
(let ((node (treesit-node-at (point)))
660+
(value nil))
661+
(when (and (treesit-node-top-level node "^parameter_list$")
662+
(treesit-node-top-level node "^function_declarator$"))
663+
(setq node (treesit-node-top-level node "^parameter_list$"))
664+
(setq value (list (treesit-node-start node) (treesit-node-end node)))
665+
(and (> (point) (nth 0 value))
666+
(<= (point) (nth 1 value))))))
667+
653668
(defvar electric-operator-c-function-definition-syntax-list
654669
'(topmost-intro
655670
topmost-intro-cont
@@ -666,9 +681,11 @@ Using `cc-mode''s syntactic analysis."
666681
;; There are similar but different symbols for objective-C, but I'm not
667682
;; going to try to support that now.
668683

669-
(--> (c-guess-basic-syntax)
670-
(-map #'car it)
671-
(-intersection electric-operator-c-function-definition-syntax-list it)))
684+
(if (derived-mode-p 'c-ts-mode 'c++-ts-mode)
685+
(electric-operator-c-ts-is-function-parameter?)
686+
(--> (c-guess-basic-syntax)
687+
(-map #'car it)
688+
(-intersection electric-operator-c-function-definition-syntax-list it))))
672689

673690
(defun electric-operator-c-mode-include-line-opening-quote? ()
674691
(electric-operator-looking-back-locally "#\\s-*include\\s-*"))
@@ -859,6 +876,7 @@ Also handles C++ lambda capture by reference."
859876
)
860877

861878
(apply #'electric-operator-add-rules-for-mode 'inferior-python-mode (electric-operator-get-rules-for-mode 'python-mode))
879+
(apply #'electric-operator-add-rules-for-mode 'python-ts-mode (electric-operator-get-rules-for-mode 'python-mode))
862880

863881
(defun electric-operator-python-mode-in-lambda-args? ()
864882
"Are we inside the arguments statement of a lambda?"
@@ -988,6 +1006,9 @@ Also handles C++ lambda capture by reference."
9881006
;; pointer deref vs multiplication
9891007
(cons "*" nil)
9901008

1009+
(cons ":" ": ")
1010+
(cons "::" "::")
1011+
9911012
(cons "/" #'electric-operator-prog-mode-/)
9921013
(cons "/*" " /* ")
9931014
(cons "//" " // ")
@@ -1001,6 +1022,30 @@ Also handles C++ lambda capture by reference."
10011022
;; Bar is used for lambdas as well as or
10021023
(cons "|" nil))
10031024

1025+
(apply #'electric-operator-add-rules-for-mode 'rust-ts-mode (electric-operator-get-rules-for-mode 'rust-mode))
1026+
1027+
(defun electric-operator-rust-mode-: ()
1028+
"Handle ':'"
1029+
(cond
1030+
((electric-operator-python-mode-in-lambda-args?) ": ")
1031+
1032+
;; A keyword statement (we can't use \\b here because it matches _)
1033+
((electric-operator-looking-back-locally "\\(\\s-\\|^\\)\\(if\\|elif\\|else\\|for\\|while\\|class\\|def\\|try\\|except\\|with\\)") ":")
1034+
1035+
;; type definition inside a function
1036+
((and (eq (electric-operator-enclosing-paren) ?\() (electric-operator-looking-back-locally "def .*")) ": ")
1037+
1038+
;; type definition on a variable declaration
1039+
((electric-operator-looking-back-locally "^\\s-*[a-zA-Z0-9_.]+") ": ")
1040+
1041+
;; A dictionary
1042+
((eq (electric-operator-enclosing-paren) ?\{) ": ")
1043+
1044+
1045+
;; Unsure, but probably a multiline declaration of some sort that we can't
1046+
;; understand, leave it alone.
1047+
(t nil)))
1048+
10041049

10051050

10061051
;; R tweaks (ess mode)

0 commit comments

Comments
 (0)