How to intercept the key for the "Continue" command, except for F5 in Visual Studio?

In Visual Studio, F5 is used for StartDebugging and Continue , which is quite annoying. Since many other IDEs / debuggers do not work the same way, e.g. cgdb , IntelliJ IDEA .

For simplicity and versatility, I want to use one key binding scheme for all IDE / Debuggers. I cannot change other IDE / Debuggers to bind both StartDebugging and Continue to F5 .

So my question is:

Is there a way to individually bind StartDebugging and Continue to various keys in Visual Studio?

+6
source share
1 answer

This link describes how you can reassign behavior for different keys. The command you want to change is called Debug.Start

http://msdn.microsoft.com/en-us/library/5zwses53.aspx

However, I believe that Debug.Start considers the same command for both Run and Continue . So I'm not sure if this will allow you to map the action to different keys.

+3
source

Source: https://habr.com/ru/post/980506/


All Articles