Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to disable "Run execution to here" in Visual Studio 15?

How do I disable "Run execution to here" button that appears when moving cursor to the left of the code? It's really annoying when I accidentally click it while selecting code.

like image 805
user1306322 Avatar asked Dec 10 '16 05:12

user1306322


People also ask

What is run execution to here?

When stopped at a break state under the debugger, a light green “run execution to here” glyph subtly appears next to a line of code where your mouse is hovered. Move your mouse to the glyph and click the button. Your code will run and stop on that line the next time it is hit in your code path.

How do I skip a line while debugging in Visual Studio?

You can also click on the line you want to skip to and hit Ctrl+F10 (Run to Cursor). It will jump directly to that line.

How do I view execution steps in Visual Studio?

Press Shift + F11 (or Debug > Step Out). This command resumes app execution (and advances the debugger) until the current function returns.

How do I run a line by line code in Visual Studio?

Click the Debug | Step Into menu item or press the F11 key to step into any property or method for debugging. You can then continue the line by line execution by pressing F10 or continue ...


1 Answers

Uncheck Show run to click button in editor while debugging at the very end of Debugging options:

enter image description here

like image 173
Sergey Vlasov Avatar answered Sep 22 '22 19:09

Sergey Vlasov