Is there an intelligent PHP Emacs tagging solution?
I want to navigate to a member declaration under the point. Creating a tag file using etags *.php
and then navigating with find-tag
is limited in that it doesn't seem to have any sense of the calling class. So you have to cycle开发者_开发知识库 if two classes have methods with the same name.
Semantic's semantic-ia-fast-jump
function, another potential option, doesn't seem to work at all for PHP methods.
I have used this a time or two.
http://ctags.sourceforge.net/
Try it out, see if it works for you.
For reference: There's some php support for semantics wisent parser now, so you should be able to use semantic-ia-fast-jump
now.
精彩评论