diff options
| author | Axel Forsman <axel@axelf.se> | 2025-03-02 07:52:06 +0100 |
|---|---|---|
| committer | Axel Forsman <axel@axelf.se> | 2025-03-02 07:55:39 +0100 |
| commit | ac620beace5f28fbf40cd69765975bf6e915c01c (patch) | |
| tree | cb0fda053c7ab809b2c66668c97b1ca026d66024 /evil-commands.el | |
| parent | ad3e95f6e3253ddf2d33377ebbff7c82082ab75a (diff) | |
Use regular end-of-visual-line in evil-append-line
Fixes #1964
Diffstat (limited to 'evil-commands.el')
| -rw-r--r-- | evil-commands.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/evil-commands.el b/evil-commands.el index 9b350ee..df58bfe 100644 --- a/evil-commands.el +++ b/evil-commands.el @@ -2888,7 +2888,7 @@ next VCOUNT - 1 lines below the current one." (interactive "p") (if (and visual-line-mode evil-respect-visual-line-mode) - (evil-end-of-visual-line) + (end-of-visual-line) (evil-move-end-of-line)) (setq evil-insert-count count evil-insert-lines nil |
