csv.vim icon indicating copy to clipboard operation
csv.vim copied to clipboard

invalid column pattern error

Open rudrab opened this issue 4 years ago • 1 comments
trafficstars

Hi, while opening any csv file, I am getting error: Invalid column pattern

Screenshot from 2021-09-14 07-14-22

I have installed the plugin using vim-plug and used:

" CSV: {{{2
if exists("did_load_csvfiletype")
  finish
endif
let did_load_csvfiletype=1

augroup filetypedetect
  au! BufRead,BufNewFile *.csv,*.dat  setfiletype csv
augroup END
" }}}2

no other csv related config is there in my .vimrc. A sample csv is also attached. head.csv

This file when opened in vim with ignoring the error is coming as Screenshot from 2021-09-14 07-15-45

I would like to get rid of that error and want it to be properly columned.

rudrab avatar Sep 14 '21 01:09 rudrab

check :h csv-syntax-error

chrisbra avatar Sep 14 '21 06:09 chrisbra