Christian Brabandt | 3698fbb | 2024-07-16 21:51:32 +0200 | [diff] [blame] | 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' |