I like CMD + D to select the next identical selection, OPT + DOWN/UP to move the selections down or up a line, SHIFT + OPT + DOWN/UP to duplicate the selection, and CMD + / to turn the line into a comment. How bout you?
I like CMD + D to select the next identical selection, OPT + DOWN/UP to move the selections down or up a line, SHIFT + OPT + DOWN/UP to duplicate the selection, and CMD + / to turn the line into a comment. How bout you?
A few shortcuts that I use a lot are really basic, but very powerful. Frankly, I’m always surprised when I’m pairing with a co-worker and they don’t know about them.
Cmd+pto open the fuzzy file finder search. This is a huge one and I’m shocked when I see people hunting through the file explorer to find the file they are looking for.Cmd+shift+fto open the fuzzy workspace text search. Basically grep your workspace for code.F1orCmd+p+>- Action menu. So many good actions in here from running formatters, to toggling light/dark mode, reload window, etc.Ctrl+r(mac) - Fuzzy search for recently opened projects/files. HittingEnteropens it in same window orCmd+Enteropens in new window. I use this sooo much and most people don’t know about it.Cmd+nto open a new vscode window. Although I rarely use this as I almost always just useCtrl+r.VSCode has great fuzzy search and if you use it, it lets you move around your code and codebases so much faster.
Installing CLI tools so when in the terminal, you can run
code <path>to open vscode at that working directory.Can’t remember the last time I used
File->Opento open a new project window.Cmd+bto open/close the left drawerCmd+shift+eto open the file explorer.