You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a suggestion for a replacement that takes visual lines into account.
(defunalk/crux-smart-kill-line ()
"Kill to the end of the line and kill whole line on the next call. Takes visual line into account."
(interactive)
(let ((orig-point (point)))
;; If point at beginning of line, kill line from point to end of visual line
(beginning-of-visual-line 1)
(if (= orig-point (point))
(kill-visual-line)
;; If point at end of line, kill line backward to beginning of visual line
(end-of-visual-line 1)
(if (= orig-point (point))
(kill-visual-line 0)
;; If point in middle of line, kill line from point to end of visual line
(goto-char orig-point)
(kill-visual-line)))))
Thanks for a wonderful package.
When I run
crux-smart-kill-line
with the point at the end of the line, it kills the entire line.With
visual-line-mode
activated and(setq crux-move-visually t)
I would expect it to kill just the visual line.crux-move-beginning-of-line
works as expected, moving to the beginning of the visual line.Using the following environment:
crux-20231013.520
Gnu emacs 29.1
Windows 10
The text was updated successfully, but these errors were encountered: