How do you select all lines at the same indentation level?
vii with indent-object plugin
The vim-indent-object plugin provides ii (inner indent) and ai (around indent) text objects.
vii with indent-object plugin
The vim-indent-object plugin provides ii (inner indent) and ai (around indent) text objects.
v'a
Press v for visual mode, then 'a to extend the selection to mark a.
v$
Press v to enter character-wise visual mode, then $ to extend selection to the end of the line (excluding the newline).
vit
Press vit to select the inner content of the nearest HTML/XML tag.