Skip to content

Instantly share code, notes, and snippets.

@yasuyk
Created January 16, 2013 17:45
Show Gist options
  • Save yasuyk/4549131 to your computer and use it in GitHub Desktop.
Save yasuyk/4549131 to your computer and use it in GitHub Desktop.
emacsのカーソル位置にある単語をDashで調べる
(defun dash ()
(interactive)
(shell-command
(format "open dash://%s"
(or (thing-at-point 'symbol) ""))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment