Reputation: 3090
I am trying to use Visual Studio Code for my php projects. Coming from Eclipse I really miss Ctrl+K
command which jumps to the next occurence of the same word and Ctrl+Shift+K
goes to the previous. Is there an equivalent command in Visual Studio Code?
And also how to I go to the function definition in Visual Studio Code?
In Eclipse it's press Ctrl
and click.
In Sublime it's hover on function and click the subsequent path that appears.
I've done some research and installed PHP formatter extension. But that didn't give me anything.
Upvotes: 5
Views: 2109
Reputation: 1722
We can get the same key mapping as in eclipse for Visual Studio Code.
Here is the screenshot of vsc extension: "Eclipse Keymap"
Install it. Then By pressing
Ctrl+K
will give the same functionality:
Hope this helps!!!
Upvotes: 4