Reputation: 4651
In PhpStorm pressing Ctrl + Click
on the function takes me to the place where it is implemented.
Is there some plugin that does this in Visual Studio Code?
Upvotes: 0
Views: 74
Reputation: 16099
You want to use the PHP Intellisense extension, which provides "go to definition" support: https://marketplace.visualstudio.com/items?itemName=felixfbecker.php-intellisense
You can trigger it with F12 or ctrl+click.
Upvotes: 1