rainbow icon indicating copy to clipboard operation
rainbow copied to clipboard

Rainbowify CSV files

Open boris-petrov opened this issue 8 years ago • 1 comments

The following vim plugin does that:

https://github.com/mechatroner/rainbow_csv

I'm not sure if this is possible with your plugin, but it is definitely a life-saver when working with CSV files.

boris-petrov avatar May 23 '17 17:05 boris-petrov

I think you can try the following config:

let s:rainbow_conf = {
\	'separately': {
\		'csv': {
\			'parentheses': ['start=/\v[^,]+|(,\ze,)/ step=/\v\,/ end=/$/ keepend'],
\		},
\	}
\}

And you have to :set ft=csv to enable hilighting for csv files.

luochen1990 avatar Jun 06 '18 09:06 luochen1990