Added the equivalent to dd in vim. With M-m

This commit is contained in:
qorg11 2020-06-20 02:19:36 +02:00
parent 95ba46921e
commit 51d76fffdc
No known key found for this signature in database
GPG key ID: 343FC20A4ACA62B9

View file

@ -107,6 +107,17 @@ Including indent-buffer, which should not be called automatically on save."
:ensure t
:init
(global-set-key (kbd "C-x C-r") 'sudo-edit-find-file))
;; dd in Vim, this is here because call-cc told me.
(defun delete-shit ()
(interactive)
(move-beginning-of-line nil)
(kill-line)
(forward-line -1))
(global-set-key (kbd "M-m") 'delete-shit)
#+END_SRC
* No idea