Dont jump cursor to the inserted position

This commit is contained in:
Riyyi
2020-08-24 15:09:32 +02:00
parent ec311c6c2d
commit 3689f0c90b
+1 -1
View File
@@ -1062,7 +1062,7 @@ Functions that only use built-in Emacs functionality.
;; Insert spaces ;; Insert spaces
(let ((diff (- until-column current-column))) (let ((diff (- until-column current-column)))
(if (> diff 0) (if (> diff 0)
(insert (make-string diff ?\ )) (save-excursion (insert (make-string diff ?\ )))
(user-error "Column should be higher than point"))))) (user-error "Column should be higher than point")))))
(defun dot/reload-theme () (defun dot/reload-theme ()