This commit is contained in:
Henrik Lissner 2015-05-18 21:56:34 -04:00
parent a8a5e9f540
commit eafb74110f
4 changed files with 0 additions and 120 deletions

View file

@ -1,19 +0,0 @@
;; Elisp ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(add-hook 'emacs-lisp-mode-hook 'turn-on-eldoc-mode)
;; Real go-to-definition for elisp
(bind 'motion emacs-lisp-mode-map "gd"
(λ (let ((func (function-called-at-point)))
(if func (find-function func)))))
;; Go-to-definition in other buffer
(bind 'motion emacs-lisp-mode-map "gD"
(λ (let ((func (function-called-at-point)))
(if func (find-function-other-window func)))))
;; TODO Add clojure support
;; TODO Add scheme support
(provide 'init-lisp)
;;; init-elisp.el ends here