It is found that you could be more efficient and appear smarter if you use shortcut keys rather than doing things with the mouse. Sometimes I used to wonder how the system administrators are very fast in setting up things, restarting a crashed network, etc.
They do all with their precious keystrokes combined with Shift, Ctrl, and Alt, Is’nt it? And who wouldn’t like shortcuts after all?
For those people who use Visual Studio to write code, behold I present you few of my favorite and best shortcuts that can be used while writing and managing code.
- Collapse/Expand selection Ctrl+M+H/Ctrl+M+U
Sometimes you would want to hide the annoying code that is blocking your view or distracting you, use this then. - Comment/Uncomment block of code Ctrl+K+C/Ctrl+K+U
//bored of adding ‘// ‘on every line??
//You can bulk comment and uncomment by using this shortcut. - Navigate Forward/Backward Ctrl+–/Ctrl+Shift+–
Forgot the previous location of your cursor? Don’t worry. This is the hotkey for the back and forward buttons - Full Screen without losing the panels Alt+Shift+Enter
Searching for the menubar and the panels while on Full Screen? This is here to rescue - Simple search Ctrl+I
A simple search box is opened you can start typing after pressing this hotkey and press again to go to next result - The TAB key for “snippets”
Best of the shortcuts. Bored of writing if-conditions and making sure that they are surrounded by braces?
Type if and then press the tab key twice. Baam! the if-condition is completed for you. VS offers many snippets like try-catch, for, class, foreach etc - Surround with snippets CTRL+K+S
Want a piece of code within an if-condition or a for-loop. Don’t worry, select the code and press these keys. Select any snippet from the context menu shown and consider it done. - Find Matching braces Ctrl+]
A conversation with the Open brace “{“
Me: Hey you!! Where is your pair??
Open Brace: I dunno 😔
Me: Okay let me find it!
After a while
Got you!! You cant hide from me, You dumb closing brace!
-To find the matching brace of a function/class use this shortcut.
-To select the code between the braces, add shift key to the combination. - Ctrl+C+V to duplicate the current line
This is a well-known legend yet in the form of a simple shortcut key. - Create/Remove a bookmark Ctrl+K+K
Bookmarks, they are cousins to the breakpoints. They are not hit by the debugger but can still help you remember where a bug that you discovered yesterday is present.
-Open BookMark window -Ctrl+K+W
-Go to the next bookmark -Ctrl+K, Ctrl+N - Cycle through the list of clipboard contents Ctrl+Shift+V
This is also a well-known shortcut. Tired of copy-scroll-paste, copy-scroll-paste? You can replace it with copy-copy-scroll-paste-paste by using this shortcut - Collapse all functions Ctrl+M+O
Too large code base? Minimize the code and find it easy to navigate through the code. - Format Selection Ctrl+K+F
When the code is shabby and does not have proper spacing and indents, use this shortcut and see the Magic.

There are yet many more amazing shortcuts but these are my favorite, hope these are helpful in your programming career. You can take the shortcut keys to a whole new level using Auto Hot Keys, read it here.
Click here, for more detailed cheat sheet on various tools and technique.
Happy Coding 🙂
Nice Article Dude.. Keep Posting 🙂
LikeLike
So how do you bring back all the functions to uncollapsed once you collapse it with ctrl+M+O ?
LikeLiked by 1 person
Edit: For UNcollapse all functions use Ctrl + M + P
LikeLiked by 1 person
thanks for the info
LikeLike
Ctrl + D does the same as Ctrl + C, Ctrl + V but doesn’t touch your clipboard
LikeLiked by 1 person
basically it duplicates the line, right?
LikeLike
Yes
LikeLike
Cool! Thanks for input. I’ll add it to the actual post as well.
Follow and support our site. And provide more feedback like this future.
LikeLike
And Ctrl + M, P expands all functions
LikeLiked by 1 person
Damn that was great!! Loved the 2xTab .
LikeLiked by 1 person