Added the equivalent to dd in vim. With M-m
This commit is contained in:
parent
95ba46921e
commit
51d76fffdc
1 changed files with 17 additions and 6 deletions
11
config.org
11
config.org
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue