20 + Bonus VSCode Shortcuts for Every developer should know

Node programming is the trending topic in today’s time among developers. And VSCode is the best IDE among all IDEs. If you also want to work in NodeJS then VSCode can prove to be very good. And if you are already using VSCode, then this article can prove to be very good for you.
In this article, I am going to tell you about the 20 + Bonus VSCode shortcuts which is going to increase your programming speed.

Here is the list of 21 VSCode Shortcuts To Code Faster

Search Text Through All Files At Once (Windows: Ctrl + Shift + F, Mac: Control + Shift + F)

One of my favorite features of VSCode is having the ability to search any matching text throughout all of your files in the project directory. The best part? It is strikingly fast!

To use this feature, you can open up the view by pressing Ctrl + Shift + F. It will show this sidebar to the left of your editor:show-search-1

By typing in a text and pressing enter, VS code will provide you a list of results matching the text like below:show-search-2

You can also replace all the matching texts in each resulting file at once in the blink of a second. If you click this tiny arrow at the left, it will bring up a second input box below where you can input the text to replace all along with clicking the tiny box that appears to the right:

show-search-3

This feature can save you and your team a ton of time in the most timely pressured situations.

Setting Accent Color For Tabs (Material Theme–not exclusive)

Are you tired of seeing the same accent color for tabs everyday? If you’re using the Material Theme extension for VS code, you can actually choose a custom accent color for your tabs to look like this:

Red:

accent-color1

Purple:

accent-color2

Yellow:

accent color in vscode

There are 16 different colors you can choose from!

So if you have the extension, open up your command palette (Ctrl + Shift + P), select Material Theme: Set accent color and choose a color from the list, it will change the underlining color of your tabs as shown below:

accent-color in vscode 4

But wait a minute… I’m not using Material Theme in that example.

That’s because with the Material Theme extension installed, the feature is available throughout all of your themes. You don’t have to be using the material theme to use this feature!

Process Explorer

Do you find your VS code editor a bit slow sometimes? Ever wished you can take a peek at what is eating up your memory? Well if you haven’t known this already VS code has a Process Explorer feature which will allow you to open up a window as shown below:

process explorer1

Look familiar to you?

You might have seen this from the Windows Task Manager which can be used when pressing Ctrl + Alt + Delete outside of your VS code editor. (Mac: Control + Option + Delete).

[tmh_article_ads]

Expand Bracket Selection

Open your Keyboard Shortcuts and search for Expand Bracket Selection

This is one of those features that took me a while to discover because I simply couldn’t guess the name of this feature.

When I first saw this in use by someone from a YouTube video, I knew that I had to do whatever it takes to find this one so that I can put a keyboard shortcut and use it in my projects.

Using this feature will allow you to automatically select the entire block from the beginning curly braces to end:

expand bracket selection for vs code

I find these to be very useful in situations where you want to swap an if/else block.

Re-open a Closed Editor

When you’re working on a huge project with files lying around everywhere, it might be a little frustrating when you accidentally close a tab and have to search for it again in the side menu because VS code has a habit of auto-expanding directories.

Well, you can actually just re-open a closed editor by pressing Ctrl + Shift + T. (Mac: Control + Shift + T) You can even open up the tab before that, the tab even before that, etc. It’s an undo feature exclusively for tabs.

Open a File By Matching Text

And speaking of searching for files, you can search for and open files on the fly. This is one of my top favorite features because you don’t really need to manually click through directories to re-open a file that isn’t open anymore. You won’t believe how much time this continues to save me every day.

I have my keyboard shortcut bound to Ctrl + T (Mac: Control + T) to use this feature. You might have a Go to Symbol in File window pop open when you press that. I never really use that feature so I have it disabled.

[tmh_article_ads]

If you want to bind this to a hotkey, open up the keyboard shortcuts (File > Preferences > Keyboard Shortcuts) and search for workbence.action.quickOpen. Double click it and assignCtrl + T to it.

Integrated Terminal

You can open up VSCode’s integrated terminal and instantly use it as a normal CLI by pressing Ctrl +` (Backtick). Doesn’t it feel great never having to leave your VS code editor?

Running Extensions

You can view all of your running extensions by opening up the command palette and typing “Show Running Extensions”.

As you have might be guessed this will show you a list of your running extensions.

…but that’s not all. You’re also given the information to see which extensions take longer than others on activation. If you were ever wondering why your editor was loading up slower than usual then your answer might be lying within this window:

show running extensions in vs code

Reload

I personally think this is one of the coolest features of VS code because it allows you to keep your window in front of you when reloading your editor while having the same effect as if you were to close and re-open it.

Press Ctrl + Alt + R. (Mac: Control + Option + R)

Interchange Tabs To Separate Groups

I have a habit of having a tab in the wrong tab group while I’m developing. I also like to avoid using my mouse as much as possible to get my way around things as it involves me lifting up my hand away from my keyboard. My hand is heavy, so I’d like to keep it on my keyboard at all times. Luckily VS code has a way to transfer a tab to a separate tab group by pressing Ctrl + Alt + Right Arrow (Mac: Control + Option + Right Arrow) to move a tab to the group on the right, or Ctrl + Alt + Left Arrow (Mac: Control + Option + Left Arrow) to move a tab to a group on the left:

transfer tab to separate group

Select Everything to the Left/Right

Sometimes you want to delete everything to the right or left of your cursor. If you weren’t aware yet that you can select everything to the right or left of your cursor, this will improve the efficiency in getting things done in code because it simply makes things quicker.

For example, to select everything to the right or left:

  • Windows: Ctrl + Shift + Home/End
  • Mac: Ctrl + Shift + Home/End

select all to the left or right in vscode1

To select almost everything to the right or left (cuts time in half):

select all to the left or right in vscode2

Delete Previous Word

To delete a previous word, you can press Ctrl + Backspace (Mac: Control + Delete). This is very useful in situations where you make a typo and you hate having to press and hold the backspace button to get to the part you want to delete:

deleting a previous word in vscode1

You can actually use this outside of vs code almost anywhere:

deleting a previous word in vscode2

Startup Performance

Sometimes it can just be a pain in the behind when you’re lacking further detail on performance issues while you’re trying to find out why there is a performance issue in the first place.

Must check: Development Trends and Web Technology Stacks in 2019

And sometimes if you’re lucky enough you’ll find a tool that gives you all the answers. In VS code, startup performance is a top priority. That’s why you’re able to pop open a useful window of miraculously all the information you need:

startup performance 1

So go ahead and open up your command palette and search Startup Performance!

Select In Words

You can select texts word by word with the shortcuts Ctrl + Shift + Right Arrow (Mac: Control + Shift + Right Arrow) and Ctrl + Shift + Left Arrow (Mac: Control + Shift + Left Arrow).

Very useful to select words faster:

select in words

Duplicate Line

A very powerful and known feature is the ability to duplicate lines. Simply press Ctrl + Shift + D (Mac: Control + Shift + D):

donating money to the poor in vscode

Move to Begin/End of File

The quickest way to get your cursor to the first or last line of the file is pressing Ctrl + Home (Mac: Control + Home) to go the beginning and Ctrl + End (Mac: Control + End) to go to the end.

move to beginning or end of file in vs code

Replace All Matching Occurrences of Text In The Current File

Back when I started coding I had to select matching occurrences manually with my mouse. I’m glad those days are over because VSCode provides a Change All Occurrences feature.

See this too: Comparison between Spring Boot and Vertx | Which is better?

You can select any group of text as your selection and if there are more than one occurrences of that selection, you can select and modify all occurrences at once by pressing Ctrl + F2 (Mac: Control + F2). I personally think Alt + F3 (Mac: Option + F3) feels a little easier on the wrist.

Move Line Up/Down

Moving a line-up or down is useful literally every 10 minutes.

Press Alt + Up Arrow (Mac: Option + Up Arrow) to move up and Alt + Down Arrow (Mac: Option + Down Arrow) to move down.

Deleting a Line

You can delete a line instantly in two ways:

Overwriting the clipboard with Ctrl + X (Mac: Control + X):

deleting a line and overwriting the clipboard

Preserving the clipboard with Ctrl + Shift + K (Mac: Control + Shift + K). I personally prefer Ctrl + Alt + D (Mac: Control + Option + D):

deleting a line and overwriting the clipboard

Move Editor Left or Right

If you’re like me, you probably have an uncontrollable desire to re-order tabs in a group where the tabs are related to one another and the tabs to the left are the high level files while the files going to the right are lower levels.

You can control this much easier by using the commands Move Editor Left and Move Editor Right. I assigned them to Ctrl + Num Pad 4 (Mac: Control + Num Pad 4) and Ctrl + Num Pad 6 (Mac: Control + Num Pad 6) so that they are more intuitive to me:

moving an editor to the left or right in vscode

 

BONUS: Add Cursor Above/Below

Duplicating your cursors is arguably the one feature in VS code that saves you the most time. This becomes great in situations like typescript:

cursor above or below in vs code

Press Ctrl + Alt + Up Arrow (Mac: Control + Option + Up Arrow) to add cursor above or Ctrl + Alt + Down Arrow (Mac: Control + Option + Down Arrow) to add cursor below.

Conclusion

And that concludes the end of this post! I hope you found a new shortcut to use! Look out for posts from me in the future!

 

By Tell Me How

It is a technology blog and admin has excellent experience in programming from 5+ year. You can contact us at ceo.tellmehow@gmail.com

Share your thoughts

Leave a Reply

Loading Facebook Comments ...
Loading Disqus Comments ...