module-elisp.el => module-lisp.el
This commit is contained in:
parent
9034993ccb
commit
0897e5e34b
4 changed files with 27 additions and 20 deletions
16
modules/lib/defuns-lisp.el
Normal file
16
modules/lib/defuns-lisp.el
Normal file
|
@ -0,0 +1,16 @@
|
|||
;;; defuns-lisp.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-lisp)
|
||||
;;; defuns-lisp.el ends here
|
Loading…
Add table
Add a link
Reference in a new issue