Better Programming

Advice for programmers.

Follow publication

Member-only story

Boost Your Productivity With Visual Studio/VS Code Shortcuts and Refactorings

Tobias Streng
Better Programming
Published in
8 min readJan 30, 2022
Photo by AltumCode on Unsplash

If you have learned to code like me, writing MS Excel macros with little to no support of your IDE, you might also have adapted the behavior of trying to write everything by yourself — instead of letting you help out by your IDE.

Modern IDEs or code editors support you with a vast amount of keyboard shortcuts, refactoring options, and automatic code completion. Mastering them will greatly improve your productivity in coding.

In this article I will present you some techniques, I learned, to become extremely performant writing code with Microsoft Visual Studio (2019+). With the extension Visual Studio Keymap, most of these techniques will also apply to Microsoft Visual Studio Code.

Not using Visual Studio or VS Code? I would still recommend, that you check out some of the shortcuts and refactoring options down below, and research what your IDE can do for you. Your coding experience will drastically improve when you learn to use them.

Keyboard Shortcuts

Duplicate Lines (CTRL+D)

When you have to add multiple similar lines of code, you can just duplicate the selected line with CTRL+D and edit them afterward.

Duplicate Lines

Move Lines up and down (ALT+↑/↓)

You can move a line up and down in your code file by using ALT+ or ALT+. This often comes in handy in collaboration with “Duplicate Lines.

Multi-Line Edit (ALT+SHIFT+↑/↓)

Multiple similar lines, one below the other, can be edited all at once with ALT+SHIFT+↑/↓

Delete Line (CTRL+SHIFT+L)

If you want to delete a whole line, you can just use CTRL+SHIFT+L. However in this case I like to use a custom shortcut like CTRL+SHIFT+DEL, as i think this is more memorable.

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

Tobias Streng
Tobias Streng

Written by Tobias Streng

Senior Software and Cloud Solutions Architect

Responses (3)

Write a response