vim-dist / webvim

WebVim is a vim based distribution targeting JavaScript and Web development
http://webvim.org
GNU General Public License v3.0
330 stars 34 forks source link

Update EasyAlign config for `:` #59

Open krampstudio opened 7 years ago

krampstudio commented 7 years ago

When aligning the following sample :

{
    foo : 'bar',
    longFooToAlign: true,
    mediumFoo : 12
}

using : :EasyAlign :, I have

{
    foo:            'bar',
    longFooToAlign: true,
    mediumFoo:      12
}

but I'd like it to produce the following alignment

{
    foo             : 'bar',
    longFooToAlign  : true,
    mediumFoo       : 12
}

EasyAlign already align that way for =.