dhruvasagar / vim-table-mode

VIM Table Mode for instant table creation.
2.11k stars 96 forks source link

Only use the alignment feature for csv files #143

Closed bersp closed 5 years ago

bersp commented 5 years ago

Hello,

First, thanks! I love your plugin, works really good for me. Now, I wanna know if it possible only use de alignment feature in csv files. For example: I wanna convert this

data, longlongdata, longdata
1.1,34,10000
1.2,22,200
1.6,10,450

to this, every time I update de table

data, longlongdata, longdata
1.1 , 34          , 10000
1.2 , 22          , 200
1.6 , 10          , 450

or something similar, easy to read but still using de CSV format.

Sorry for my english, Thanks in advance!

dhruvasagar commented 5 years ago

I would suggest to use another plugin better designed for this feature. github.com/godlygeek/tabular is what i've used a lot and it does the job well.