emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] IDE tools for maintaining Emacs Lisp programs (Org in particular


From: Jambunathan K
Subject: Re: [O] IDE tools for maintaining Emacs Lisp programs (Org in particular)
Date: Sat, 21 Apr 2012 10:12:53 +0530
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.95 (windows-nt)

For all practical purposes, I find this be sufficient.

(global-set-key (kbd "C-c f")
                (lambda ()
                  (interactive)
                  (require 'finder)
                  (let ((thing (intern (thing-at-point 'symbol))))
                    (if (functionp thing)
                        (find-function thing)
                      (find-variable thing)))))

Put your cursor on a variable or a function, C-c f and you are staring
right at the definition of the variable or function.  For this to work,
the library defining the function or variable should already be loaded.

-- 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]