Skip to content

Instantly share code, notes, and snippets.

@wingyplus
Created August 14, 2016 16:13
Show Gist options
  • Save wingyplus/4da01a7477ff35a75b45a32e19f05da7 to your computer and use it in GitHub Desktop.
Save wingyplus/4da01a7477ff35a75b45a32e19f05da7 to your computer and use it in GitHub Desktop.
Uppercase at any position
(defun upcase-any-pos ()
(interactive)
(backward-word)
(upcase-word 1))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment