Commands Flashcards
1
Q
How do you quit a file
A
:q
2
Q
How to quite a file since last update
A
:q!
3
Q
How to exit save the file
A
:wq
4
Q
How to save the file and exit file
A
:wq
5
Q
How to move the cursor down
A
j
6
Q
How to move the cursor up
A
k
7
Q
How to move cursor to the right
A
l
8
Q
How to move cursor to the left
A
h
9
Q
How to update parts of the code
A
i
I puts you into insert mode where you can update the file
10
Q
How do you leave insert mode
A
click escape
11
Q
How do you delete a line in vim
A
dd
copys line to clipboard as well
12
Q
How to move all the way down
A
G
13
Q
How to go to the top
A
gg
14
Q
How to move up and down blocks of code
A
{ and }
15
Q
How to move down a certain amount of lines
A
number j
ex: 25j