I'm trying to use the vim plugin, Tabular, to align some misformatted CSS code. Unfortunately, I can't quite seem to grasp how to start the match at the beginning of a visual selection in Vim. Here's some example code:
color: #a8a8a8;font-family: Helvetica;
color: #d0d0d0;
font-weight: normal; background-color: inherit; font-size: 13px !important;
background-color: inherit;
width: 16px; min-width: 16px; display: inline-block; margin-right: 2ex; margin-left: 2px;
text-align: center; height: 0; line-height: .5ex; padding-top: 1ex;
background: transparent;
My attempt at trying to left align to the start of the visual block selection hasn't yet succeeded, and I'm wondering where exactly I went wrong:
'<,'>Tabularize /\%V\s\+\zs\%V/
That is, in the visual selection, match any whitespace and then start the match. That should go up to the first word character and left align there, but I don't think Tabularize recognizes the visual block selection. Also, \%V has no notion of ^ and breaks the regex every time. The combination ^\%V has also failed me.
Any suggestions as to how to quickly format and align to the start of the visual block selection in vim?