Created
January 16, 2013 17:45
-
-
Save yasuyk/4549131 to your computer and use it in GitHub Desktop.
emacsのカーソル位置にある単語をDashで調べる
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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