EZ
(defun lg-kill-line (&optional arg)
"Deletes to the end of current line.
If ARG is given `lg-kill-line' deletes to the beginning of line."
(interactive "P")
(if (and arg (listp arg))
(kill-region (point-at-bol) (point))
(kill-line arg)))
Size: a a a
EZ
(defun lg-kill-line (&optional arg)
"Deletes to the end of current line.
If ARG is given `lg-kill-line' deletes to the beginning of line."
(interactive "P")
(if (and arg (listp arg))
(kill-region (point-at-bol) (point))
(kill-line arg)))
A
A
A
A
S
DL
emacsclient -c --eval '(dired "~")'
EZ
DL
EZ
P
DL
EZ
Δ
emacsclient -c --eval '(dired "~")'
Δ
PG
DL
Δ
P
DL