Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the shortcut key for Run to cursor

What is the shortcut key for Run to cursor in Visual Studio 2008?

like image 207
automatic Avatar asked Sep 06 '08 13:09

automatic


People also ask

How do I run a cursor?

In a general term, as name suggests, the “Run to Cursor” keeps the debugger at the point you mentioned. You can achieve this by using “CTRL + F10” shortcut key. This is features is mostly used when you are debugging a repetitive code path or a module that is getting called multiple times.

What is the shortcut key for run in or code?

The Shortcut to Run Code in VS Code That shortcut is Ctrl + Alt + N. There are a few more ways to run code. Pressing F1 and then choosing “Run Code” also works. If you want to type it out after pressing F1, you're free to do that as well.

What is CTRL arrow?

"Ctrl + Up Arrow" is used to move the cursor one paragraph up.

How do you select with keyboard?

Press Ctrl+A on your keyboard to select all text in the document.


2 Answers

The shortcut key is CTRL+F10.

like image 188
Espo Avatar answered Sep 19 '22 04:09

Espo


The default is CTRL+F10 but it can be overridden. The place to find what your current shortcuts are and change them is

Tools
Customize...
Keyboard...
Show commands containing:
Debug.RunToCursor

or

Tools
Options
Environment
Keyboard
Show commands containing:
Debug.RunToCursor

like image 38
Larry Smithmier Avatar answered Sep 23 '22 04:09

Larry Smithmier