DEV Community

Cover image for 39 No Frills Keyboard Shortcuts every Developer Should Know About
Chris Bertrand
Chris Bertrand

Posted on • Edited on

39 No Frills Keyboard Shortcuts every Developer Should Know About

[Edit] What used to be 27 is now 39 - Due to all the great comments, I've amended the list to add a few more suggestions, thanks to all that contributed.

Shortcuts are the most productive thing that a developer can add to their repertoire that will aid them through their entire career. Learning how to use your system and tools will improve your productivity and in general make traversing all your windows and apps a breeze. The mouse is a great, tool, but if you can do it quicker, more effectively without your hands leaving your keyboard then you should!

Here's a list of my most used shortcuts, you'll probably know or use quite a few of these already, hopefully there is one here you don't!

Let's get moving to Shortcuts people!

Cursor Movements

ARROWS - move character by character

CTRL + ARROWS - move word by word

HOME - Go to the first character of the line

END - Go to the last character of the line

CTRL + HOME - Go to the start of the file

CTRL + END - Go to the end of the file

SHIFT + Cursor Movement - Move as above, but selecting text.

Generic Windows Shortcuts

These are generic shortcuts specific to Windows, these are the things you will use day in, day out, so get accustomed to these, and use them when you can.


Ctrl + C - Copy - CTRL + INS

Ctrl + V - Paste - SHIFT + DEL

Ctrl + S - Save - SHIFT + INS

Image result for typing mad gif


Ctrl + Z - Undo

Ctrl + Y - Redo

Image result for undo redo gif


Ctrl + F - Find in window/app


Windows + D - Minimise all windows, goto desktop.

Windows + Up Arrow - Maximise current window/app

Windows + Left/ Right Arrow - Move current window/app to left/right side of/next screen.

Image result for typing mad gif


Alt +Tab - Window Tab Move

Shift + Alt + Tab - Reverse Window Tab Move

Image result for typing mad gif


Ctrl + Tab - Application Tab Move

Shift + Ctrl + Tab - Reverse Application Tab Move

As you can see, in the above two cases, the shift button, SHIFTS the direction of the tab! It's really intuitive if you think about it this way!

Image result for alt tab gif


Ctrl + Arrow  - Move cursor across word to next special character or space.

Ctrl + Shift + Arrow  - Move cursor across word to next special character or space, and highlight.

Image result for fast typing gif


IDE Shortcuts (VSCode)

The following is a list of shortcuts that are baked into VSCode - most IDE's will have the option to configure shortcuts, so if you use something else, have a go setting these up!

Image result for vscode banner

Alt + Left Arrow - Go back - Last Cursor Position, this could be in a different file.

Alt + Right Arrow - Go forward - Last Cursor Position the other way! Did you go too far? Don't worry, undo your undo!


Ctrl + Shift + F - Find in all Files

Really useful if GoTo Definition is not working, or you're looking for a String!


Ctrl + K + C - Comment

Ctrl + K + U - Uncomment

Ctrl + / - Comment Toggle

Image result for comment uncomment visual studio gif


Alt + Shift + Up Arrow - Duplicate line above

Alt + Shift + Down Arrow - Duplicate line below


Ctrl + Shift + R - Refactor

Image result for rename vscode gif


F12 - Goto Definition

This one will save you a lot of time, if your codebase is a sprawling behemoth then this will come in very handy.

Image result for goto definition gif


F2 - Rename

This will rename all instances of any variables you have kicking around, this won't replace text strings or comments, just the variable declaration.

Ctrl + D - Multi Cursor, Select next occurrence

Ctrl + Shift + L - Multi Cursor, Select All in File

Multiple Selection

Ctrl + P - Quick Find - Files, Etc

Quick Find


Browser Shortcuts.

Ctrl + Shift + t - Opens previously closed tab in browser!


We all strive to become a keyboard ninjas!

Related image

Do you have any other keyboard shortcuts we should be using?

Oldest comments (31)

Collapse
 
chris_bertrand profile image
Chris Bertrand

Sometimes GIFs make everything better, today is one of those days! :)

Collapse
 
rupeshiya profile image
Rupesh Krishna Jha • Edited

Can you give some shortcuts for developing in atom editor ?

Collapse
 
chris_bertrand profile image
Chris Bertrand

I'll be honest, I've never used Atom before, but this cheatsheet package looks the business.

atom.io/packages/atom-shortcuts

Collapse
 
rupeshiya profile image
Rupesh Krishna Jha

thanks man!

Collapse
 
chris_bertrand profile image
Chris Bertrand

Awesome, Thanks!

Collapse
 
leoat12 profile image
Leonardo Teteo • Edited

I use both VS Code and InteliJ IDEA daily to do my work, when I saw the Crtl + Y shortcut I thought that I would warn InteliJ IDEA users that it is totally different in this IDE and can be potentially "dangerous". hahaha
Here is a reference card for InteliJ IDEA to contribute to the shortcut movement. :)

Collapse
 
chris_bertrand profile image
Chris Bertrand

Haha! Yeah I've maybe I need a disclaimer somewhere! I've fallen for that on other IDE's too. For anyone wondering, this will delete the line you are on! Quite the opposite from Redo in most ways! :D

Collapse
 
felssca profile image
FelipeSSCA

Nice!!Thanks!

Collapse
 
dance2die profile image
Sung M. Kim

Thanks for the list Chris.

To add one more, I believe only one keyboard shortcut is worth mentioning for browsers.

ctrl + shift + t

It opens previously closed tab, which saved me multiple times.

Collapse
 
chris_bertrand profile image
Chris Bertrand

This one is great, thanks. I've added to the main post under Browser Shortcuts!

Collapse
 
dance2die profile image
Sung M. Kim

🕺💃

Collapse
 
yucer profile image
yucer

A long time ago, before Windows...

The code editors use to have this combination of keys that still work today.

CURSOR MOVEMENT:

  • ARROWS -> move character by character

  • CTRL + ARROWS -> move word by word

  • HOME -> Go to the first character of the line

  • END -> Go to the last character of the line

  • CTRL + HOME -> Go to the start of the file

  • CTRL + END -> Go to the end of the file

SELECTION:

  • SHIFT + CURSOR MOVEMENT -> move selecting text

COPY & PASTE:

  • CTRL + INS -> Copy the selected test TO the clipboard (COPY)

  • SHIFT + DEL -> Move the selected test TO the clipboard (CUT)

  • SHIFT + INS -> Move the selected test FROM the clipboard (PASTE)

Since those times I program with that COPY & PASTE combination. There is less movement of the hands. Once you get used to it, you will find that CTRL + C and CTRL + V combinations are not so ergonomic.

For example, in order to move a block of code from one place to another, I use to press:

  • HOME : go to the first position of the line
  • SHIFT + ARROW DOWN : select lines all the way down.
  • SHIFT + DEL : cut the block.
  • CURSOR MOVEMENT until the first position of the line where the code is going to be inserted.
  • SHIFT + INS : to paste the block.

You can see that in all that process, the left hand have only made the slight movement of pressing and releasing SHIFT, and not the complicated movement of pressing CTRL + C / CTRL + V. The right hand did only use the arrows (better if it is from the numeric keypad, so that HOME and END can be reached with an slight movement of the right index finger)

Collapse
 
chris_bertrand profile image
Chris Bertrand

Thanks, I've added a selection of these to the main post. Funnily I use quite a few of these in my bash terminal! ;)

Collapse
 
alvinmilton profile image
Alvin Milton

Thank you.

Collapse
 
sandordargo profile image
Sandor Dargo

Oh, great, thanks! Most of the Windows shortcuts work on my Ubuntu as well!

Collapse
 
inclushe profile image
Ethan

You can also toggle comments (in VSCode at least) by selecting your block of code and hitting CTRL + /.

Collapse
 
chris_bertrand profile image
Chris Bertrand

I didn't know this one, it's actually even easier! Thanks

Collapse
 
codevault profile image
Sergiu Mureşan

Great list! Didn't know about Alt + Left, gonna try it today at work. I'll be adding some that I use daily and haven't been covered in this list.

More for VSCode:
CTRL + D - multi cursor select next occurrence
CTRL + SHIFT + L - multi cursor select all occurrences in file
CTRL + ALT + UP or DOWN - multi cursor next line up/down
CTRL + / - comment or uncomment
CTRL + P - quick search file

And some for VS:
CTRL + , - quick search definition and/or file
SHIFT + ALT + UP or DOWN - multi cursor next line up/down
CTRL + SHIFT + U - to upper-case
CTRL + K and CTRL + D - format whole file