Suppose I have this code:
width: 215px;
height: 22px;
margin-top: 3px;
background-color: white;
border: 1px solid #999999;
I want to align it this way:
width: 215px;
height: 22px;
margin-top: 3px;
background-color: white;
border: 1px solid #999999;
using Align.vim I can do :Align \s
to use whitespace as separator, but that has 2 problems
- the initial indent is doubled
- all whitespaces are considered separators, so the last line is messed up
I've read through the many options Align.vim offers, but I haven't found a way to do this.