From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jambunathan K Subject: Re: IDE tools for maintaining Emacs Lisp programs (Org in particular) Date: Sat, 21 Apr 2012 10:12:53 +0530 Message-ID: <81bomlvgoi.fsf@gmail.com> References: <80y5pqm8av.fsf@somewhere.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([208.118.235.92]:59449) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SLSA7-00088q-9v for emacs-orgmode@gnu.org; Sat, 21 Apr 2012 00:43:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SLSA5-0008Tv-Nk for emacs-orgmode@gnu.org; Sat, 21 Apr 2012 00:43:06 -0400 Received: from mail-pz0-f52.google.com ([209.85.210.52]:64096) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SLSA5-0008Tq-Ed for emacs-orgmode@gnu.org; Sat, 21 Apr 2012 00:43:05 -0400 Received: by dake40 with SMTP id e40so12656624dak.39 for ; Fri, 20 Apr 2012 21:43:02 -0700 (PDT) In-Reply-To: <80y5pqm8av.fsf@somewhere.org> (Sebastien Vauban's message of "Fri, 20 Apr 2012 22:56:24 +0200") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Orgmode 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. --