Red Bottle
Red Bottle

Reputation: 3090

Eclipse's Ctrl+k equivalent in Visual Studio Code

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

Answers (1)

prashant.kr.mod
prashant.kr.mod

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"

enter image description here

Install it. Then By pressing

Ctrl+K

will give the same functionality:

enter image description here

Hope this helps!!!

Upvotes: 4

Related Questions