emacs: is there a semantic-jump-to-declaration (using semantic.el)?
- by Cheeso
Suppose I am editing a buffer containing C code.
I have started semantic with semantic-load-enable-code-helpers .
I have point placed on the name of a function . If I then invoke senator-jump I can jump to the place where that fn is first declared, in that module.
What if it is an extern? Is it possible to use senator to jump to the definition of the fn, which resides in a separate module?
Thanks.