diff --git a/config.org b/config.org index 1bf8fef..bc45d52 100644 --- a/config.org +++ b/config.org @@ -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