In the realm of computer wizardry, there are often small tips, tricks, and hacks to improve our moment-to-moment productivity. Knowing some of these shortcuts will help you maintain momentum while coding, writing notes, or performing other tasks on your PC.

Keyboard Shortcuts

Important Shortcuts

CommandKeyboard ShortcutUses
CopyCtrl + CCopy files, folders, sections of code, etc
PasteCtrl + VPaste something you’ve copied
CutCtrl + XCut files, folders, sections of code, etc
Screenshot (windows PC)Windows logo key + Shift + SFor taking screenshots on a Windows PC
UndoCtrl + ZUndo the last action performed in an application
RedoCtrl + YRedo the last undone action
SaveCtrl + SAlmost universal shortcut for saving the current file
FindCtrl + FTo find text, in almost any application

Other common shortcuts

CommandKeyboard Shortcut
Rename a fileClick on file name, then F2
Screenshot (full screens)Print Screen button
Select a range of files or textShift + Click, or Shift + ⇅

Text Editor

CommandKeyboard Shortcut
Move to end/beginning of a wordCtrl + ⇆
Select a range of textShift + ⇅

Windows Specific

CommandKeyboard Shortcut
Task ManagerCtrl + Shift + Esc
Windows SecurityCtrl + Alt + Del

Visual Studio

There are an absolutely insane number of Visual Studio shortcuts. Here are a few of my favorites:

CommandKeyboard Shortcut
Move a line of text up/down, or current selectionAlt + ⇅
Multi-cursor, type on multiple lines at onceCtrl + Shift + ⇅
Duplicate (line of text, or current selection)Ctrl + D
Cut (line of text, or current selection)Ctrl + C, or Ctrl + L

If you’d like to see them all, here’s the full list for VS 2022

(if you happen to have VS 2019, you can find those shortcuts here)

For debugging shortcuts, visit Technique 2: Using the MSVC Debugger