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