Skip to content

Instantly share code, notes, and snippets.

@rileyrg
Created August 18, 2014 20:20
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 rileyrg/26336b8e3d04731c6fd3 to your computer and use it in GitHub Desktop.
Save rileyrg/26336b8e3d04731c6fd3 to your computer and use it in GitHub Desktop.
(global-set-key (kbd "C-c f")
(lambda ()
(interactive)
(require 'finder)
(let ((thing (intern (thing-at-point 'symbol))))
(if (functionp thing)
(find-function thing)
(find-variable thing)))))
(global-set-key (kbd "C-c P") '
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment