Reputation: 888
In eclipse if I do ctrl + click on a function, it will take me to the function definition. Is there any shortcut like that in Dreamweaver (CS5) to goto the javascript function definition, when i click on a function call?
This is the biggest trouble i have in Dreamweaver :(
Upvotes: 2
Views: 1177
Reputation: 2467
The closet thing that Dreamweaver has to the goto definition is: Right-Click in code view -> Functions -> "list of functions here"
The list of functions are only the functions that are actually defined in the current file, include files aren't searched. Of course this is of limited functionality, but besides doing a site wide search for "function myFunctionName", this is what is available.
Upvotes: 1