Reputation: 6302
Is there function reference integrated in PHPStorm/WebStorm ?
I mean like when i point my cursor on some php function , then I press e.g. F1 and it will show me function details (parameters, usage...) on separate page.
Is this integrated in phpstorm/webstorm ?
Upvotes: 16
Views: 7871
Reputation: 91
select the function, then press fn + F1 on MAC, press CTRL + q on Windows
Upvotes: 0
Reputation: 2999
You can also hold down Ctrl and hover over for a quick definition and furthermore click (by default) on the function name to jump to the function definition itself.
Upvotes: 6
Reputation: 13468
In addition to the other answers there is Ctrl+Shift+I which pops up a modal with the actual function definition. Further, if you then release Shift+I while keeping Ctrl pressed the call to the function will turn into a link when you mouse over it and clicking it takes you to the source full of the function definition.
Source: http://www.jetbrains.com/phpstorm/webhelp/viewing-definition.html#
Upvotes: 3
Reputation: 7478
Press Ctrl+Q on any reference to see a doc popup Press Shift-F1 on any reference to open external link (the one lised in quick doc)
Upvotes: 24