In Visual Studio 2008, how can I make control+click do a “Go To Definition”?

后端 未结 7 1540
遥遥无期
遥遥无期 2020-12-31 01:49

In the Delphi IDE, you can hold control and click on a method to jump to its definition. In VS2008, you have to right-click and select \"Go To Definition\".

I use th

相关标签:
7条回答
  • 2020-12-31 02:53

    Just a quick note that the following AutoHotkey script works for me in Visual C++ 2010 Express.

    SetTitleMatchMode 2
    #IfWinActive, Microsoft Visual C++ 2010 Express
    ^LButton::Send {click}{f12}
    

    I also changed the shortcuts for View.NavigateForward and View.NavigateBackward to Alt+Right/Left Arrow since I am used to Eclipse.

    0 讨论(0)
提交回复
热议问题