unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* unifying emacs "go to definition" functionality
@ 2013-02-20  0:28 Brendan Miller
  2013-02-20  3:00 ` Stefan Monnier
                   ` (3 more replies)
  0 siblings, 4 replies; 15+ messages in thread
From: Brendan Miller @ 2013-02-20  0:28 UTC (permalink / raw)
  To: emacs-devel

Right now emacs has several modules that offer "go to definition"
functionality, all of which have different implementations, and
different behavior.

1. Etags uses M-. and M-* to push and pop from a pair of tag stacks
(find-tag-marker-ring, and tags-location-ring).

2. elisp uses C-h f TAB RETURN to jump to definition. It has no tag
stack, so there's no way to jump back.

3. CEDET uses C-c , J to jump to definition. It has no tag stack,
though it pushes to the global mark ring.

4. Jedi (jump to definition/autocompletion for python) uses C-. It has
no tag stack.

5. SLIME uses etags keybindings, but I don't think it uses etags stack.

By far the etags interface (M-. to jump to definition and push the
location, M-* to pop back), is the easiest interface to use, though
the underlying tagging engine is less precise than the others.

My suggestion is that the etags key bindings and tag stack be made
generic, and that M-. trigger some kind of callback through a buffer
local variable, so that jump to definition can be handled in a mode
specific way.

Note that in addition to reusing the same keybindings, reusing the
same tag stack gives that added benefits that it's possible to
navigate through a high level language into a lower level language,
and then pop back out with M-*. I have this mocked up (in kind of a
hacky way) with elisp and C, where I can jump from elisp into the C
definition of a native function, navigate around C with etags or
CEDET, and then pop back out back into elisp again.

I'd be interested in taking a look at the implementation work behind
this in the future, but initially I just wanted to put the idea out
there for feedback.

Brendan Miller



^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2013-02-20 15:21 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-20  0:28 unifying emacs "go to definition" functionality Brendan Miller
2013-02-20  3:00 ` Stefan Monnier
2013-02-20  4:54 ` Dmitry Gutov
2013-02-20  6:59 ` Andreas Röhler
2013-02-20 13:44   ` Dmitry Gutov
2013-02-20  8:52 ` Helmut Eller
2013-02-20  9:07   ` Andreas Schwab
2013-02-20  9:28     ` Helmut Eller
2013-02-20  9:36       ` Andreas Schwab
2013-02-20  9:45         ` Helmut Eller
2013-02-20 13:51         ` Stefan Monnier
2013-02-20  9:59   ` Lawrence Mitchell
2013-02-20 10:21     ` Jambunathan K
2013-02-20 10:40       ` Jambunathan K
2013-02-20 15:21     ` Drew Adams

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).