Commands Flashcards
How do you quit a file
:q
How to quite a file since last update
:q!
How to exit save the file
:wq
How to save the file and exit file
:wq
How to move the cursor down
j
How to move the cursor up
k
How to move cursor to the right
l
How to move cursor to the left
h
How to update parts of the code
i
I puts you into insert mode where you can update the file
How do you leave insert mode
click escape
How do you delete a line in vim
dd
copys line to clipboard as well
How to move all the way down
G
How to go to the top
gg
How to move up and down blocks of code
{ and }
How to move down a certain amount of lines
number j
ex: 25j
Command to undo
u
command to redo
ctrl + r
How to copy a line of code
yy
how to paste a line of code
p for below
P for above
How to go into visual Mode
v
how to go into insert mode and add a line
o for adding above
O capitalized for adding above