sequentialdesign's Blog

sequentialdesign's Avatar Image
2nd: thou/thee/thy 3rd: ou/oum/os ¡elle!
← All posts

lem

(define-command seq/kill-whole-line () ()
“Kill the entire line”
(with-point ((start (line-start (current-point)))

           (end (progn (line-end (current-point))
                       (forward-char)
                       (current-point))))
(kill-region start end)))

(lem:define-key lem:global-keymap
“C-M-h”
‘seq/kill-whole-line)

To like or reply, open original post on Emacs.ch