Skip to content

Instantly share code, notes, and snippets.

@igaiga
Created September 23, 2011 02:44
Show Gist options
  • Save igaiga/1236637 to your computer and use it in GitHub Desktop.
Save igaiga/1236637 to your computer and use it in GitHub Desktop.
(defun quote-word()
(interactive)
(forward-char) ;; 単語先頭対策
(backward-word)
(insert "\"")
(forward-word)
(insert "\"")
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment