branch: elpa/evil-numbers
commit c37a4cf92a9cf8aa9f8bd752ea856a9d1bc6c84c
Author: Campbell Barton <[email protected]>
Commit: Campbell Barton <[email protected]>

    Fix padding being ignored with block selection
    
    Forward padding as an argument.
---
 evil-numbers.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/evil-numbers.el b/evil-numbers.el
index dd0baaf443..3264741422 100644
--- a/evil-numbers.el
+++ b/evil-numbers.el
@@ -180,7 +180,8 @@ number with a + sign."
                  ;; Backward char, to cancel out the forward-char below. We 
need
                  ;; this, as `re-search-forwards' puts us behind the match.
                  (backward-char)
-                 (evil-numbers/inc-at-pt (* amount count) nil nil nil)
+                 (evil-numbers/inc-at-pt
+                  (* amount count) nil nil nil nil (cons padded nil))
                  (if incremental (setq count (+ count 1)))
                  ;; Undo VIM compatibility.
                  (forward-char 1)))))))))

Reply via email to