Skip to content

Instantly share code, notes, and snippets.

@ddeaguiar
Created October 12, 2012 23:14
Show Gist options
  • Save ddeaguiar/3882165 to your computer and use it in GitHub Desktop.
Save ddeaguiar/3882165 to your computer and use it in GitHub Desktop.
emacs function for clojure docs lookup.
(require 'clojure-mode)
(define-key clojure-mode-map (kbd "C-c C-g") 'clojure-browse-function)
(defun clojure-browse-function ()
(interactive)
(browse-url
(concat "http://clojuredocs.org/clojure_core/clojure.core/"
(format "%s" (symbol-at-point)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment