Hi,
any open source IDE with the possibility to go the declaration of a function, a variable, a class... presing a key(s)??
Apart from Netbeans and Eclipse.
Regards
Javi
Hi,
any open source IDE with the possibility to go the declaration of a function, a variable, a class... presing a key(s)??
Apart from Netbeans and Eclipse.
Regards
Javi
emacs or vim would allow you to do this for most languages. Not really an IDE though.
Take a look at ctags, and e.g. vim. In reality, "ctags" is a gross understatement, as you can generate an index of function and variable "tags" for almost any language.
I prefer to use PHPDesigner which does have a free edition. What you appear to be asking about is called "code completition" which this editor does, along with the ability to right click a custom function and "Go to definition" or hit F1 to view the PHP Manual on that function.
May be Komodo edit ? It's close to Eclipse and Netbeans, but much more simpler. You can go to declaration of function or variable by a custom shortcut key or just CTRL + Click on the desired var/func.