You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As a programmer you spend a lot of time typing on a keyboard, well that is if you aren't stuck in meetings all day :P. In order to optimize the time you spend in front of a keyboard it is best to learn useful keyboard shortcuts that can save you a few seconds every time you use them. That may not sound like a lot, but if you are using these shortcuts hundreds or thousands of times a day you could end up saving yourself hours of work each week.
10
12
11
13
In this article I will be covering my 10 (it is actually a few more than 10) favorite keyboard shortcuts that work in nearly all text editors. These shortcuts may not work in all editors, though, but they are guaranteed to work in Visual Studio Code. Also, if you are on a Mac computer just replace any use of Ctrl with Cmd and you should be good to go. With that out of the way lets dive into the first set of shortcuts.
@@ -15,57 +17,57 @@ _If you prefer to learn visually, check out the video version of this article._
15
17
16
18
## 1. Copy/Cut/Paste Entire Lines
17
19
18
-
You are probably already familiar with how to cut/copy/paste highlighted sections of code by using `ctrl + x`, `ctrl + c`, and `ctrl + v`respectively, but you can actually take this a step further by copying an entire line at a time. If you just place your cursor on a line without highlighting anything and press `ctrl + c`it will copy the entire line your cursor is on including the line break. Then if you press `ctrl + v`it will paste the entire line directly above the line your cursor is currently on. You can do the same thing with `ctrl + x` to cut a line and paste it somewhere else which is incredibly useful. This is probably the shortcut I use the most.
20
+
You are probably already familiar with how to cut/copy/paste highlighted sections of code by using <KeyboardShortcutkeys={["ctrl", "c"]} />, <KeyboardShortcutkeys={["ctrl", "x"]} />, and <KeyboardShortcutkeys={["ctrl", "v"]} /> respectively, but you can actually take this a step further by copying an entire line at a time. If you just place your cursor on a line without highlighting anything and press <KeyboardShortcutkeys={["ctrl", "c"]} /> it will copy the entire line your cursor is on including the line break. Then if you press <KeyboardShortcutkeys={["ctrl", "v"]} /> it will paste the entire line directly above the line your cursor is currently on. You can do the same thing with <KeyboardShortcutkeys={["ctrl", "x"]} /> to cut a line and paste it somewhere else which is incredibly useful. This is probably the shortcut I use the most.
19
21
20
22
## 2. Toggle Comments
21
23
22
-
When you are writing or debugging code you commonly need to comment out individual sections/lines. This can be tedious to do manually which is why most editors allow you to comment out all of the code on the lines you have highlighted by pressing `ctrl + /`. Also, if you do not have any code highlighted at all when pressing this shortcut it will comment out the line your cursor is on which is really useful for quickly turning on or off logging statements.
24
+
When you are writing or debugging code you commonly need to comment out individual sections/lines. This can be tedious to do manually which is why most editors allow you to comment out all of the code on the lines you have highlighted by pressing <KeyboardShortcutkeys={["ctrl", "/"]} />. Also, if you do not have any code highlighted at all when pressing this shortcut it will comment out the line your cursor is on which is really useful for quickly turning on or off logging statements.
23
25
24
26
## 3. Open File Within Project
25
27
26
-
If you spend time searching through the hundreds of nested folders in your sidebar to find a particular file then you are wasting time that can be saved by a keyboard shortcut. By pressing `ctrl + p` you can open up a search box which will search all of the files in your project for whatever you type into it. This makes finding the exact file you are looking for so much quicker since you never need to leave your keyboard to go searching for it.
28
+
If you spend time searching through the hundreds of nested folders in your sidebar to find a particular file then you are wasting time that can be saved by a keyboard shortcut. By pressing <KeyboardShortcutkeys={["ctrl", "p"]} /> you can open up a search box which will search all of the files in your project for whatever you type into it. This makes finding the exact file you are looking for so much quicker since you never need to leave your keyboard to go searching for it.
27
29
28
30
## 4. Find In File/Project
29
31
30
-
This next shortcut is one you probably are already aware of, but it is incredibly helpful nonetheless. If you need to search for a particular set of text inside of the file you have open just press `ctrl + f`. This will open a search box that you can type into and it will find all matches to your search within your current file.
32
+
This next shortcut is one you probably are already aware of, but it is incredibly helpful nonetheless. If you need to search for a particular set of text inside of the file you have open just press <KeyboardShortcutkeys={["ctrl", "f"]} />. This will open a search box that you can type into and it will find all matches to your search within your current file.
31
33
32
-
Sometimes you need to search across your entire project, though. To do that you can just press `ctrl + shift + f` and that will open a search box that will search for the entered text across all files in your current project. This is incredibly useful when refactoring code.
34
+
Sometimes you need to search across your entire project, though. To do that you can just press <KeyboardShortcutkeys={["ctrl", "shift", "f"]} /> and that will open a search box that will search for the entered text across all files in your current project. This is incredibly useful when refactoring code.
33
35
34
36
## 5. Indent/Un-Indent Lines
35
37
36
-
Keeping consistent indentation in your code is a pain since indentation is so easy to mess up and fixing it by always placing your cursor at the start of the line is annoying. Luckily, you can easily indent a group of code by highlighting multiple lines of code and pressing `tab`. This will indent all the lines of code by one tab. If you need to un-indent code it is as easy as pressing `shift + tab` and now all the selected lines of code will un-indent by one tab.
38
+
Keeping consistent indentation in your code is a pain since indentation is so easy to mess up and fixing it by always placing your cursor at the start of the line is annoying. Luckily, you can easily indent a group of code by highlighting multiple lines of code and pressing <KeyboardShortcutkeys={["tab"]} />. This will indent all the lines of code by one tab. If you need to un-indent code it is as easy as pressing <KeyboardShortcutkeys={["shift", "tab"]} /> and now all the selected lines of code will un-indent by one tab.
37
39
38
40
## 6. Create New File
39
41
40
-
While programming a new feature you are sure to create many new files. Normally this is done with the mouse by selecting the new file button, but you can actually create a new file just by typing the shortcut `ctrl + n`. This will immediately open a new file for you to work in.
42
+
While programming a new feature you are sure to create many new files. Normally this is done with the mouse by selecting the new file button, but you can actually create a new file just by typing the shortcut <KeyboardShortcutkeys={["ctrl", "n"]} />. This will immediately open a new file for you to work in.
41
43
42
44
## 7. Create A New Line Below The Current Line
43
45
44
-
This is an incredibly useful trick. Normally if you want to add a new line below your current line you need to move your cursor to the end of the current line and press enter. This is a bit of a pain to do so instead you can just press the shortcut `ctrl + enter` and a new line will be added below your current line without needing to move your cursor to the end of the line.
46
+
This is an incredibly useful trick. Normally if you want to add a new line below your current line you need to move your cursor to the end of the current line and press enter. This is a bit of a pain to do so instead you can just press the shortcut <KeyboardShortcutkeys={["ctrl", "enter"]} /> and a new line will be added below your current line without needing to move your cursor to the end of the line.
45
47
46
48
## 8. Move Cursor Whole Words At A Time
47
49
48
-
Moving your cursor through code is incredibly important since you commonly need to change code in different parts of the same file. Doing this with the mouse is slow and cumbersome so instead use the shortcut of `ctrl + left arrow`and `ctrl + right arrow` to move your cursor to the left or right by an entire word at a time. This is great for quickly moving across a line of code or getting to the end of a long word. This shortcut becomes even more useful when combined with the next shortcut.
50
+
Moving your cursor through code is incredibly important since you commonly need to change code in different parts of the same file. Doing this with the mouse is slow and cumbersome so instead use the shortcut of <KeyboardShortcutkeys={["ctrl", "←"]} /> and <KeyboardShortcutkeys={["ctrl", "→"]} /> to move your cursor to the left or right by an entire word at a time. This is great for quickly moving across a line of code or getting to the end of a long word. This shortcut becomes even more useful when combined with the next shortcut.
49
51
50
52
## 9. Highlight Characters Of Code
51
53
52
-
If you want to highlight a section of code next to your cursor you can use `shift + left arrow`and `shift + right arrow`to move your cursor one character at a time to the left or right and also highlight the character you move over at the same time. This is great for selecting small typos in your code to fix or to select small sections of code to copy and paste. You can even combine this with the previous shortcut by pressing `ctrl + shift + left/right arrow` to highlight entire words at a time instead of just one character.
54
+
If you want to highlight a section of code next to your cursor you can use <KeyboardShortcutkeys={["shift", "←"]} /> and <KeyboardShortcutkeys={["shift", "→"]} /> to move your cursor one character at a time to the left or right and also highlight the character you move over at the same time. This is great for selecting small typos in your code to fix or to select small sections of code to copy and paste. You can even combine this with the previous shortcut by pressing <KeyboardShortcutkeys={["ctrl", "shift", "←/→"]} /> to highlight entire words at a time instead of just one character.
53
55
54
56
## 10. Everything Else
55
57
56
58
As I said at the start of this article I actually have a few more than 10 shortcuts, so here are the last few shortcuts that you need to know. They are all fairly common and you most likely know them all already.
57
59
58
60
### Save File
59
61
60
-
Use the shortcut `ctrl + s` to save your currently open file.
62
+
Use the shortcut <KeyboardShortcutkeys={["ctrl", "s"]} /> to save your currently open file.
61
63
62
64
### Select Entire File
63
65
64
-
By pressing `ctrl + a` you can highlight all of the code inside a single file.
66
+
By pressing <KeyboardShortcutkeys={["ctrl", "a"]} /> you can highlight all of the code inside a single file.
65
67
66
68
### Undo/Redo
67
69
68
-
If you need to undo a change you made just press `ctrl + z`. In order to redo the change you just undid you can press `ctrl + shift + z`or `ctrl + y`. They will both do the same thing.
70
+
If you need to undo a change you made just press <KeyboardShortcutkeys={["ctrl", "z"]} />. In order to redo the change you just undid you can press <KeyboardShortcutkeys={["ctrl", "shift", "z"]} /> or <KeyboardShortcutkeys={["ctrl", "y"]} />. They will both do the same thing.
0 commit comments