From f7d04a94d7fada7077fa71af41beb806af5f697e Mon Sep 17 00:00:00 2001 From: qorg11 Date: Fri, 10 Jul 2020 21:22:38 +0200 Subject: [PATCH] Added the equivalent to ciw in Vim. Use it with C-M-k --- config.org | 6 ++++++ 1 file changed, 6 insertions(+) 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