Vim has some very useful text motions such as ib, i), i}, etcetera to quickly select a portion of text. But, I often need an inner block in line-wise mode. For example (with line numbers):
1: $foo = array(
2: 'bar' => 'Bar',
3: 'quux' => 'Quux',
4: );
Now, when my cursor is on line 2 or 3 somewhere and I hit vib or vi), Vim selects line 2, 3 and the indenting spaces on line 4. I just want line 2 and 3. I have tried with Vib and Vi) but they do the same as with a lowercase v.
Is there any easy text motion or other quick way to select an inner block in line-wise mode?