Skip to content

Instantly share code, notes, and snippets.

@palikar
Created December 7, 2018 16:22
Show Gist options
  • Save palikar/31cefe55958c931bf880555aa53f0f5a to your computer and use it in GitHub Desktop.
Save palikar/31cefe55958c931bf880555aa53f0f5a to your computer and use it in GitHub Desktop.
Kill whole word in emacs
(defun kill-whole-word ()
(interactive)
(backward-word)
(kill-word 1)
)
(global-set-key (kbd "C-c w") 'kill-whole-word)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment