Skip to content

Instantly share code, notes, and snippets.

@vmalloc
Created October 30, 2012 07:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vmalloc/3978770 to your computer and use it in GitHub Desktop.
Save vmalloc/3978770 to your computer and use it in GitHub Desktop.
Emacs configuration to lookup current symbol in Dash
(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