vim-go Flashcards
Usage of the vim-go plugin
1
Q
How is auto-completion triggered in vim?
A
<C-x><C-o>
2
Q
Enable character-wise Visual mode
A
lowercase v
3
Q
Enable line-wise Visual mode
A
Uppercase V
4
Q
Enable block-wise Visual mode
A
<C-v>
5
Q
Reselect that last visual selection
A
gv
6
Q
Toggle the free end of a visual selection
A
o
7
Q
What is a vim text object
A
Text objects define regions of text by structure (see :h text-objects)
8
Q
Visually select text object inside of {braces}
A
vi}
9
Q
Visually select text object delimited by a pair of “double quotes”
A
va”
10
Q
Visually select text object inside of <xml>tags</xml>
A
vit
11
Q
A