Added the equivalent to ciw in Vim. Use it with C-M-k

This commit is contained in:
qorg11 2020-07-10 21:22:38 +02:00
parent f7f2dce4b2
commit f7d04a94d7
No known key found for this signature in database
GPG key ID: 343FC20A4ACA62B9

View file

@ -389,6 +389,12 @@ Including indent-buffer, which should not be called automatically on save."
(interactive)
(shell-command "git pushall"))
(defun kill-inner-word ()
(interactive)
(forward-word 1)
(backward-word)
(kill-word 1))
(global-set-key (kbd "M-C-k") 'kill-inner-word)
#+END_SRC
* ido
Ido is a replacement for keybindings such as C-x C-f and C-x b. Here