tabular
tabular copied to clipboard
Vim script for text filtering and alignment
godlygeek/tabular#38
I don't think its possible to align to nearest tabstop without first counting characters of the longest line, manually. So I propose this: ``` :Tabularize /,/r1tc1lt1 abc , d ,...
Hi guys, thank you for your vim plugin. As data expert, I'm spending my life on csv files and probably use your plugin 20 times per day. However I have...
Seems like by default the justification starts counting from the left, sometimes its needed to be from the right but after to read the doc I don't see a way...
I still find it somewhat difficult to use vim-tabular when creating Markdown tables, and especially with RestructuredText tables. The main problem, I think, is how to handle the "separator rows"....
Let's say you have a nested Ruby hash: ``` ruby :foo => { :one => 1, :two => 2, :three => 3, } ``` If your cursor is on the...
It will be great if Tabular can align not only on fixed space count (after/before) but align on tab borders some kind of :Tab /=/ltrt Before: abc=cde abcdf=asd Now: abc...
Right now I've found a workaround for this to call tabular twice: with /=/ and then with /\s=/ but am I missing some obvious way to do that with one...
Consider file contents: ``` bundle edit_line append_groups_starting(v) { vars: "index" slist => getindices("$(v)"); classes: "add_$(index)" not => groupexists("$(index)"), comment => "Class created if group does not exist"; insert_lines: "$($(v)[$(index)])", comment...