Created
October 30, 2012 07:23
-
-
Save vmalloc/3978770 to your computer and use it in GitHub Desktop.
Emacs configuration to lookup current symbol in Dash
This file contains 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-current-symbol () | |
(interactive) | |
(browse-url (format "dash://%s" (current-word))) | |
) | |
(global-set-key (kbd "C-c d") 'dash-current-symbol) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment