File: find-func.el.html
The funniest thing about this is that I can't imagine why a package
so obviously useful as this hasn't been written before!!
;;; find-func
(find-function-setup-keys)
or just:
(load "find-func")
if you don't like the given keybindings and away you go! It does
pretty much what you would expect, putting the cursor at the
definition of the function or variable at point.
The code started out from describe-function, describe-key
("help.el") and fff-find-loaded-emacs-lisp-function (Noah Friedman's
"fff.el").
Defined variables (11)
find-alias-regexp | The regexp used by ‘xref-find-definitions’ to search for an alias definition. |
find-face-regexp | The regexp used by ‘find-face’ to search for a face definition. |
find-feature-regexp | Regexp used by ‘xref-find-definitions’ when searching for a feature definition. |
find-function-C-source-directory | Directory where the C source files of Emacs can be found. |
find-function-after-hook | Hook run after finding symbol definition. |
find-function-recenter-line | The window line-number from which to start displaying a symbol definition. |
find-function-regexp | The regexp used by ‘find-function’ to search for a function definition. |
find-function-regexp-alist | Alist mapping definition types into regexp variables. |
find-function-source-path | The default list of directories where ‘find-library’ searches. |
find-library-source-path | The default list of directories where ‘find-library’ searches. |
find-variable-regexp | The regexp used by ‘find-variable’ to search for a variable definition. |