vimtricks.wiki Concise Vim tricks, one at a time.

How do you select all lines at the same indentation level?

Answer

vii with indent-object plugin

Explanation

The vim-indent-object plugin provides ii (inner indent) and ai (around indent) text objects. vii selects lines at the same indent level.

Next

How do I visually select a double-quoted string including the quotes themselves?