Browse Source

Dont jump cursor to the inserted position

master
Riyyi 4 years ago
parent
commit
3689f0c90b
  1. 2
      .config/emacs/config.org

2
.config/emacs/config.org

@ -1062,7 +1062,7 @@ Functions that only use built-in Emacs functionality.
;; Insert spaces
(let ((diff (- until-column current-column)))
(if (> diff 0)
(insert (make-string diff ?\ ))
(save-excursion (insert (make-string diff ?\ )))
(user-error "Column should be higher than point")))))
(defun dot/reload-theme ()

Loading…
Cancel
Save