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

A

L

18
Q

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

A

zt

19
Q

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

A

zb

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

A

mq

23
Q

Go to next mark

A

‘q

24
Q

Start recording a macro

A

qx (where x is the register to copy to)

25
Q

End recording a macro

A

q

26
Q

Play a macro

A

@x (where x is the register where the macro is stored)

27
Q

Display assci value of character

A

ga

28
Q

Move backwards by one word

A

b

29
Q

Open a new line below

A

o

30
Q

Open a new line above

A

O

31
Q

Replace more than one character

A

R

32
Q

Copy/Yank

A

y

33
Q

Copy/Yank one word

A

yw

34
Q

Indent in visual mode

A

>

35
Q

Unident in visual mode

A
36
Q

Insert comment into .vimrc file

A

”.

For example “.Adds a break between lines and command area

37
Q

Move to top line

A

:1

38
Q

Move to bottom line

A

:$

39
Q

Move to any line

A

:n where n is the line number

40
Q

Find the next instance of the word the cursor is on

A
* to go forward
# to go backward
41
Q

Open a file from a link within that file

A

gf