Align text into a table
From Vim Tips Wiki
[edit] Duplicate tip
This tip is very similar to the following:
These tips need to be merged – see the merge guidelines.
Tip 570 Previous Tip • Next Tip
Created: September 30, 2003 Complexity: basic Author: mosh Minimum version: 6.0 Karma: 179/46 Imported from: Tip#570
Align badly formatted text into a table by selecting the region, then pressing <A-a>. This case aligns the '='; you decide the centering string before pressing return.
You need the perl script "align" from http://www.cs.albany.edu/~mosh/Perl/align.
Mapping is:
:vmap <A-a> !perl ~/perl/align -c:=
Example input:
" x = 1; " xyz = 245; " a=1;
Example output:
" x = 1; " xyz = 245; " a = 1;
[edit] Comments
Categories: Review | Duplicate | VimTip | Usage
