From 5f1223fbc5285689db812236c9100329740a805b Mon Sep 17 00:00:00 2001 From: Adam Stankiewicz Date: Tue, 29 Jul 2014 13:03:49 +0200 Subject: Major update --- syntax/csv.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'syntax/csv.vim') diff --git a/syntax/csv.vim b/syntax/csv.vim index 41a194d1..e2da7dbc 100644 --- a/syntax/csv.vim +++ b/syntax/csv.vim @@ -113,9 +113,9 @@ fu! DoHighlight() "{{{3 \. s:col . '/ contains=CSVDelimiter' else for i in range(len(b:csv_fixed_width_cols)) - let pat = '/\%' . b:csv_fixed_width_cols[i] . 'c.*' . + let pat = '/\%' . b:csv_fixed_width_cols[i] . 'v.*' . \ ((i == len(b:csv_fixed_width_cols)-1) ? '/' : - \ '\%' . b:csv_fixed_width_cols[i+1] . 'c/') + \ '\%' . b:csv_fixed_width_cols[i+1] . 'v/') let group = "CSVColumn" . (i%2 ? "Odd" : "Even" ) let ngroup = "CSVColumn" . (i%2 ? "Even" : "Odd" ) -- cgit v1.2.3