Navigation Flashcards

1
Q

Move Up

A

k

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Move Down

A

J

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Move Right

A

l

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Move Left

A

h

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Move to end of the next word

A

e

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Move to start of the next word

A

w

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Move to the beginning of the line

A

^ or 0

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Move to the end of the line

A

$

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Page Up

A

Ctrl + b

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Page Down

A

Ctrl + f

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Move to end of file

A

G or :$

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Move to start of file

A

gg or :1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Motion: end of word without whitespace

A

e

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Motions: end of word with whitespace

A

w

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Motion: Start of word with whitespace

A

b

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Move cursor to top line in Window

A

H

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

Move cursor to bottom line in Window

18
Q

Move current line the cursor is on to top of the window

19
Q

Move current line the cursor is on to bottom of the window

20
Q

Copy to line register

A

“xyy (where x is the register to copy to)

21
Q

Paste a register

A

“xp (where x is the register to paste)

22
Q

Add a mark

23
Q

Go to next mark

24
Q

Start recording a macro

A

qx (where x is the register to copy to)

25
End recording a macro
q
26
Play a macro
@x (where x is the register where the macro is stored)
27
Display assci value of character
ga
28
Move backwards by one word
b
29
Open a new line below
o
30
Open a new line above
O
31
Replace more than one character
R
32
Copy/Yank
y
33
Copy/Yank one word
yw
34
Indent in visual mode
>
35
Unident in visual mode
36
Insert comment into .vimrc file
". For example ".Adds a break between lines and command area
37
Move to top line
:1
38
Move to bottom line
:$
39
Move to any line
:n where n is the line number
40
Find the next instance of the word the cursor is on
``` * to go forward # to go backward ```
41
Open a file from a link within that file
gf