Here is the most popular shortcut vs code editor.

Number 1: Selection and find next matching word

Suppose you want to change more than one class name that contains the same name. One by one change is difficult and a matter of time-consuming. It will be very easy and simple you use a shortcut

keyboard shortcut: Ctrl + D 

all the class will be selected that contains the same name

Number 2: Delete the previous word

Sometimes, we use backspace for deleting words and it works letter by letter. it is a matter of boring and time-consuming. if we use a simple shortcut this work will be easy. 

Keyboard shortcut: Ctrl + Backspace

above shortcut delete the whole word at a time.

Number 3: Do you want to delete the whole line with free space?

if you want to delete the whole line whatever you write without Select + Backspace pressing. Just press the keyboard shortcut. it also copies whole the lines.

Keyboard Shortcut: Ctrl + X

Number 4: Do you want to copy the whole line?

keyboard shortcut: Ctrl + C

Number 5: Open terminal in VS code

we can easily open terminal within the second. Just press the below shortcut.

keyboard shortcut: Ctrl + Backtick key( Below button of Esc is Backtic)

Number 6: Open Current directory.

Sometimes, we need to go current working directory while the time of coding. No need to go Mycomputer>then next folder > then next folder. just press the keyboard shortcut.

Keyboard shortcut: Ctrl + O

Number 7: For code fold and unfold

when code line numbers are huge it is difficult to continue coding. we can easily code fold and unfold.

keyboard shortcut: Ctrl + Shift + [ (fold) or ] (unfold)

Number 8: Go next Line

suppose, your mouse cursor in the middle of code line. but you want to go next line without use mouse. is it possible? the answer is yes. use the keyboard shortcut.

Keyboard shortcut: Ctrl + Enter

Number  9: Wrapping code

most of the time we copy a code of line that not fit with code editor width. we can wrap all code using the shortcut. For wrapping code just press

the keyboard key,

Keyboard Shortcut: Alt + Z

Number 10:  Code duplication

Most of the time during coding we need to duplicate code more than once. No need to follow the traditional way Ctrl + C then Ctrl + V. Be smart and follow shortcuts.

 Keyboard shortcut: Alt+ shift + down arrow ( ↓)

Number 11: Code Positioning Up and Down 

Positioning code one of the most favorite shortcuts all developers. In this way we can up position or down position more than one line of code. shortcut below.

Keyboard shortcut : Alt + Up arrow sign (↑) / Down arrow sign (↓)

Number 12 : For creating new folder/ directory 

We can create new folder or directory using vs code terminal. First follow shortcut number 5 then

type in VS code terminal: mkdir<space> folder name

Number 13 : For creating .js / .HTML / .css file 

it is easy to create any king of extension file within current folder using following command

type command in VS Code terminal: type<space null> nul > (type file name  include extension .js / .HTML / .css)

Number 14: Change directory / folder or go back directory and go to forward directory

type in VS code Terminal and Enter ( Back Directory) : cd..(double dot symbol)

type in VS code Terminal and Enter ( Forward Directory) : cd <space> directory name;

Number 15: Emmet shortcut for vs code

        ul>li*4>a

        ul+li*4>a

        .name$*6{name $}