How does one set Visual Studio 2010 keyboard shortcuts comfortably, especially when using ReSharper?

后端 未结 2 599
甜味超标
甜味超标 2021-01-14 13:27

In every Visual Studio.NET version you can set keyboard shortcuts using menu Tools -> Options -> Environment -> Keyboard and then find th

相关标签:
2条回答
  • 2021-01-14 13:53

    You can rebind all of the ReSharper shortcuts by using the ReSharper -> Options -> Visual Studio Integration page. Select a keyboard scheme and hit "Apply Scheme".

    0 讨论(0)
  • 2021-01-14 13:55

    The way I do this is to perform an action while recording a macro (using Tools / Macro / Record temporary macro).

    When I have finished with the action, I look at the source code of the macro and it usually helps to find the correct command.

    For example, I have just let R# add some magic through Alt-Enter, and the macro recorder has:

    DTE.ExecuteCommand("ReSharper_QuickFix")
    
    0 讨论(0)
提交回复
热议问题