Ranges Flashcards

1
Q

range: lines n-m

A

:n,m

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

range: current line

A

:.

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

range: last line

A

:$

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

range: marker c

A

:‘c

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

range: all lines in file

A

:%

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

range: all lines that contain pattern

A

:g/pattern/

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

deleted lines n-m using a range

A

:n,md

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

replace all occurences of pattern with string from lines n-m

A

:n,ms/pattern/string/g

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