]> git.eshelyaron.com Git - emacs.git/commitdiff
Keep cursor position in treesit-indent
authorYuan Fu <casouri@gmail.com>
Sat, 29 Oct 2022 18:50:15 +0000 (11:50 -0700)
committerYuan Fu <casouri@gmail.com>
Sat, 29 Oct 2022 18:59:45 +0000 (11:59 -0700)
* lisp/treesit.el (treesit-indent): Create a marker and jump back to
that marker after indentation.

lisp/treesit.el

index dd0aca50494f172fe28369c6e3eb1608e6c5fc35..90e5d09693f85ebd82e07b91db20316da373c07b 100644 (file)
@@ -974,12 +974,18 @@ Return (ANCHOR . OFFSET).  This function is used by
   "Indent according to the result of `treesit-indent-function'."
   (treesit-update-ranges)
   (pcase-let* ((`(,anchor . ,offset) (treesit--indent-1)))
-    (when (and anchor offset)
-      (let ((col (+ (save-excursion
-                      (goto-char anchor)
-                      (current-column))
-                    offset)))
-        (indent-line-to col)))))
+    (if (and anchor offset)
+        (let ((col (+ (save-excursion
+                        (goto-char anchor)
+                        (current-column))
+                      offset))
+              (delta (- (point-max) (point))))
+          (indent-line-to col)
+          ;; Now point is at the end of indentation.  If we started
+          ;; from within the line, go back to where we started.
+          (when (> (- (point-max) delta) (point))
+            (goto-char (- (point-max) delta))))
+      'noindent)))
 
 (defvar treesit--indent-region-batch-size 400
   "How many lines of indent value do we precompute.