doomemacs/modules/lib/defuns-elisp.el

17 lines
407 B
EmacsLisp
Raw Normal View History

2015-06-15 15:06:10 +08:00
;;; defuns-elisp.el
;;;###autoload
(defun narf/elisp-find-function-at-pt ()
(interactive)
(let ((func (function-called-at-point)))
(if func (find-function func))))
;;;###autoload
(defun narf/elisp-find-function-at-pt-other-window ()
(interactive)
(let ((func (function-called-at-point)))
(if func (find-function-other-window func))))
(provide 'defuns-elisp)
;;; defuns-elisp.el ends here