Have this in a Vim buffer
{
manifest_version: 2,
name: 'Pinboard Simple',
version: '1.0',
description: 'Simple extension for bookmarking to Pinboard',
}
Select all lines in visual mode (<S-V>) and press =. Result:
{
manifest_version: 2,
name: 'Pinboard Simple',
version: '1.0',
description: 'Simple extension for bookmarking to Pinboard',
}
This doesn't look good. My settings
set noexpandtab
set shiftwidth=4
set tabstop=4
Except for indent character, result does not depend on expandtab.
Have this in a Vim buffer
Select all lines in visual mode (
<S-V>) and press=. Result:This doesn't look good. My settings
Except for indent character, result does not depend on
expandtab.