CLI and Shortcuts Flashcards
vs code rename all variable
f2
vs code - select word
ctrl + d
vs code - go line #
ctrl + g
vs code - copy line
shift + alt + up/down
CLI - how to open file folder on windows WSL
explorer.exe . (the last dot is the home directory)
vs code peek defination
control + f12
vs code - add cursor
Ctrl + Alt + Up arrow / Down arrow
git ignore file name
.gitignore
vs code - command plat
ctrl + p
npm list all packages
npm list
vs code - move line
alt + up/down
npm install global package
npm install -g
git ignore file content
- list the file name directly if on the top level
- using asterisk + suffix to hide certain types of file
npm install packages
npm install
ubuntu cli - create new folder
mkdir
ubuntu cli - display current directory
pwd
ubuntu cli - create new file
touch testing.js
ubuntu cli - list all files and directories
ls