Added the equivalent to ciw in Vim. Use it with C-M-k
This commit is contained in:
parent
f7f2dce4b2
commit
f7d04a94d7
1 changed files with 6 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue