Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does VS has any shortcut like ctrl+q in eclipse?

It returns your caret(aka cursor) to the place where you stopped writing code(very useful for fast code browsing)

like image 279
IAdapter Avatar asked Feb 06 '11 16:02

IAdapter


People also ask

What is the best keyboard shortcut in Eclipse for Java?

Top 30 Eclipse Keyboard Shortcuts for Java Programmer. Top 30 Eclipse Keyboard Shortcuts for Java Programmer. 1) Ctrl + Shift + T for finding class even from jar This keyboard shortcut in Eclipse is my most used and favorite shortcut.

What is the shortcut to find next in Eclipse?

9) Ctrl + k and Ctrl + Shift +K for find next/previous 10) Go to a type declaration: F3, This Eclipse shortcut is very useful to see function definition very quickly. These Eclipse shortcuts are very helpful for editing code in Eclipse.

What are the advantages of using shortcuts in Eclipse?

Using shortcuts in Eclipse Using shortcuts make a developer more productive. Eclipse provides keyboard shortcuts for the most common actions. Using shortcuts is usually preferable as you can perform actions much faster.

What does Ctrl 3 do in Eclipse?

2. Quick Access The Ctrl + 3 shortcut allows you to perform all available actions in Eclipse. This shortcut puts the focus into the Quick Access (quick access) search box which allows you to execute any Eclipse command. For example you can open a Preference, a Wizard, a view and a Preference page.


Video Answer


2 Answers

Ctrl + - will move to the previously browsed line of code (Ctrl + Shift + - will move forward). You can download PDF versions of all the default keybindings in Visual Studio 2010 from this page.

like image 157
Donut Avatar answered Oct 05 '22 22:10

Donut


ReSharper has Ctrl+Shift-Backspace to return to previous editing position. Or Ctrl+Shift+, (Comma) to browse some recent edition places.

like image 22
Ilya Ryzhenkov Avatar answered Oct 05 '22 22:10

Ilya Ryzhenkov