@@ -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,26 @@ 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
+ (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
+
653
674
(defvar electric-operator-c-function-definition-syntax-list
654
675
'(topmost-intro
655
676
topmost-intro-cont
@@ -666,9 +687,11 @@ Using `cc-mode''s syntactic analysis."
666
687
; ; There are similar but different symbols for objective-C, but I'm not
667
688
; ; going to try to support that now.
668
689
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))))
672
695
673
696
(defun electric-operator-c-mode-include-line-opening-quote? ()
674
697
(electric-operator-looking-back-locally " #\\ s-*include\\ s-*" ))
@@ -859,6 +882,7 @@ Also handles C++ lambda capture by reference."
859
882
)
860
883
861
884
(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 ))
862
886
863
887
(defun electric-operator-python-mode-in-lambda-args? ()
864
888
" Are we inside the arguments statement of a lambda?"
@@ -988,6 +1012,9 @@ Also handles C++ lambda capture by reference."
988
1012
; ; pointer deref vs multiplication
989
1013
(cons " *" nil )
990
1014
1015
+ (cons " :" " : " )
1016
+ (cons " ::" " ::" )
1017
+
991
1018
(cons " /" #'electric-operator-prog-mode-/ )
992
1019
(cons " /*" " /* " )
993
1020
(cons " //" " // " )
@@ -1001,6 +1028,8 @@ Also handles C++ lambda capture by reference."
1001
1028
; ; Bar is used for lambdas as well as or
1002
1029
(cons " |" nil ))
1003
1030
1031
+ (apply #'electric-operator-add-rules-for-mode 'rust-ts-mode (electric-operator-get-rules-for-mode 'rust-mode ))
1032
+
1004
1033
1005
1034
1006
1035
; ; R tweaks (ess mode)
0 commit comments