Say I have this code:
var users = [
{ name: 'TJ', email: '[email protected]' },
{ name: 'Loki', email: '[email protected]' },
{ name: 'Jane', email: '[email protected]' }
];
I want to select the three lines inside the variable (in visual mode) and indent it two spaces:
var users = [
{ name: 'TJ', email: '[email protected]' },
{ name: 'Loki', email: '[email protected]' },
{ name: 'Jane', email: '[email protected]' }
];
How can I accomplish that in vim?