]> git.eshelyaron.com Git - emacs.git/commitdiff
Refine the previous change
authorDmitry Gutov <dgutov@yandex.ru>
Sat, 4 Feb 2023 02:16:55 +0000 (04:16 +0200)
committerDmitry Gutov <dgutov@yandex.ru>
Sat, 4 Feb 2023 02:16:55 +0000 (04:16 +0200)
* lisp/progmodes/ruby-ts-mode.el (ruby-ts--s-p-query): Fix a typo.
(ruby-ts--syntax-propertize): Use pcase-exhaustive to avoid typos.
Put the last s-t property after heredoc's end (apparently
parse-partial-sexp likes that more).  Move first s-t property on
percent literals to the very beginning (to be refined later).
Differentiate the %r{} literals from /.../ ones -- tree-sitter
parses them exactly the same.

lisp/progmodes/ruby-ts-mode.el

index 02cc1aad5e6235c1191571355c58ea06a09e0d90..c09711932441c2a5a558969ad31318b524201744 100644 (file)
@@ -1026,7 +1026,7 @@ leading double colon is not added."
                              ;; Backtick method redefinition.
                              ((operator "`" @backtick))
                              ;; TODO: Stop at interpolations.
-                             ((regex "/" @regex-slash))
+                             ((regex "/" @regex_slash))
                              ;; =begin...=end
                              ((comment) @comm
                               (:match "\\`=" @comm))
@@ -1037,10 +1037,16 @@ leading double colon is not added."
 (defun ruby-ts--syntax-propertize (beg end)
   (let ((captures (treesit-query-capture 'ruby ruby-ts--s-p-query beg end)))
     (pcase-dolist (`(,name . ,node) captures)
-      (pcase name
+      (pcase-exhaustive name
         ('regex_slash
-         (put-text-property (treesit-node-start node) (treesit-node-end node)
-                            'syntax-table (string-to-syntax "\"/")))
+         ;; N.B.: A regexp literal with modifiers actually includes them in
+         ;; the trailing "/" node.
+         (put-text-property (treesit-node-start node) (1+ (treesit-node-start node))
+                            'syntax-table
+                            ;; Differentiate the %r{...} literals.
+                            (if (eq ?/ (char-after (treesit-node-start node)))
+                                (string-to-syntax "\"/")
+                              (string-to-syntax "|"))))
         ('ident
          (put-text-property (1- (treesit-node-end node)) (treesit-node-end node)
                             'syntax-table (string-to-syntax "_")))
@@ -1050,10 +1056,11 @@ leading double colon is not added."
         ('heredoc
          (put-text-property (treesit-node-start node) (1+ (treesit-node-start node))
                             'syntax-table (string-to-syntax "\""))
-         (put-text-property (1- (treesit-node-end node)) (treesit-node-end node)
+         (put-text-property (treesit-node-end node) (1+ (treesit-node-end node))
                             'syntax-table (string-to-syntax "\"")))
         ('percent
-         (put-text-property (1+ (treesit-node-start node)) (+ 2 (treesit-node-start node))
+         ;; TODO: Put the first one on the first paren in both %Q{} and %().
+         (put-text-property (treesit-node-start node) (1+ (treesit-node-start node))
                             'syntax-table (string-to-syntax "|"))
          (put-text-property (1- (treesit-node-end node)) (treesit-node-end node)
                             'syntax-table (string-to-syntax "|")))