tsv.vim (298B)
1 " Vim filetype plugin file 2 " Language: Tab separated values (TSV) 3 " Last Change: 2024 Jul 16 4 " This runtime file is looking for a new maintainer. 5 6 if exists('b:current_syntax') 7 finish 8 endif 9 10 let b:csv_delimiter = '\t' " enforce tab delimiter 11 runtime! syntax/csv.vim 12 let b:current_syntax = 'tsv'