emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/evil 3e41a82333: Default to start-col when evil-shifts cal


From: ELPA Syncer
Subject: [nongnu] elpa/evil 3e41a82333: Default to start-col when evil-shifts called non-interactively
Date: Wed, 9 Mar 2022 17:58:09 -0500 (EST)

branch: elpa/evil
commit 3e41a823334abbba9cf16e482855699054d9dfe0
Author: Tom Dalziel <tom_dl@hotmail.com>
Commit: Tom Dalziel <33435574+tomdl89@users.noreply.github.com>

    Default to start-col when evil-shifts called non-interactively
---
 evil-commands.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/evil-commands.el b/evil-commands.el
index 12d1148435..a0dfca6b2e 100644
--- a/evil-commands.el
+++ b/evil-commands.el
@@ -2009,7 +2009,7 @@ See also `evil-shift-left'."
       (move-to-column (max 0 (+ col-for-insert first-shift))))
      (evil-start-of-line (evil-first-non-blank))
      ((evil--stick-to-eol-p) (move-end-of-line 1))
-     (t (move-to-column (or goal-column evil-operator-start-col))))
+     (t (move-to-column (or goal-column evil-operator-start-col 
col-for-insert))))
     (setq temporary-goal-column 0)))
 
 (defun evil-delete-indentation ()



reply via email to

[Prev in Thread] Current Thread [Next in Thread]