Fletcher Moore
Fletcher Moore

Reputation: 13804

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.

Upvotes: 9

Views: 1389

Answers (2)

phaer
phaer

Reputation: 31

For reference: There's some php support for semantics wisent parser now, so you should be able to use semantic-ia-fast-jump now.

Upvotes: 1

copperfinger
copperfinger

Reputation: 71

I have used this a time or two.

http://ctags.sourceforge.net/

Try it out, see if it works for you.

Upvotes: 2

Related Questions