Visual studio 2019 change CTRL+ CLICK from "Go To Definition" to "Go To Implementation"

Viewed 1065

I would like to CTRL+ CLICK from "Go To Definition" to "Go To Implementation".

And make CTRL + Right Click "Go To Definition"

Possible?

Thanks

2 Answers

Another option I found: Use AutoHotKey.

You can use this script to intercept Ctrl + Left mouse click and change it into Ctrl + F12 only inside visual studio:

#IfWinActive, YourAppName - Microsoft Visual Studio
^lbutton::^F12

I used the window inspector tool in AHK to see the name of my visual studio window. In my case I only need this for a specific project so it only runs when inside that exact window name.

Related