@@ -588,6 +588,7 @@ Any better ideas would be welcomed."
588
588
589
589
)
590
590
591
+ (apply #'electric-operator-add-rules-for-mode 'c-ts-mode (electric-operator-get-rules-for-mode 'c-mode ))
591
592
592
593
; ; Use the same rules for c++
593
594
(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.")
650
651
; ; Check for any user-defined types
651
652
(electric-operator-looking-back-locally electric-operator-c-user-types-regex)))
652
653
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
+
653
668
(defvar electric-operator-c-function-definition-syntax-list
654
669
'(topmost-intro
655
670
topmost-intro-cont
@@ -666,9 +681,11 @@ Using `cc-mode''s syntactic analysis."
666
681
; ; There are similar but different symbols for objective-C, but I'm not
667
682
; ; going to try to support that now.
668
683
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))))
672
689
673
690
(defun electric-operator-c-mode-include-line-opening-quote? ()
674
691
(electric-operator-looking-back-locally " #\\ s-*include\\ s-*" ))
@@ -859,6 +876,7 @@ Also handles C++ lambda capture by reference."
859
876
)
860
877
861
878
(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 ))
862
880
863
881
(defun electric-operator-python-mode-in-lambda-args? ()
864
882
" Are we inside the arguments statement of a lambda?"
@@ -988,6 +1006,9 @@ Also handles C++ lambda capture by reference."
988
1006
; ; pointer deref vs multiplication
989
1007
(cons " *" nil )
990
1008
1009
+ (cons " :" " : " )
1010
+ (cons " ::" " ::" )
1011
+
991
1012
(cons " /" #'electric-operator-prog-mode-/ )
992
1013
(cons " /*" " /* " )
993
1014
(cons " //" " // " )
@@ -1001,6 +1022,30 @@ Also handles C++ lambda capture by reference."
1001
1022
; ; Bar is used for lambdas as well as or
1002
1023
(cons " |" nil ))
1003
1024
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
+
1004
1049
1005
1050
1006
1051
; ; R tweaks (ess mode)
0 commit comments