Skip to content

Instantly share code, notes, and snippets.

@magnars
Created July 17, 2012 13:03
Show Gist options
  • Save magnars/3129270 to your computer and use it in GitHub Desktop.
Save magnars/3129270 to your computer and use it in GitHub Desktop.
(defun kill-region-or-backward-word ()
(interactive)
(if (region-active-p)
(kill-region (region-beginning) (region-end))
(backward-kill-word 1)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment