From: Christian Brabandt Date: Tue, 16 Jul 2024 19:51:32 +0000 (+0200) Subject: runtime(tsv): include simple syntax plugin X-Git-Tag: v9.1.0594~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3698fbbd7c35590dcc4708677d6c38f9009cf9a3;p=thirdparty%2Fvim.git runtime(tsv): include simple syntax plugin fixes: #15271 Signed-off-by: Christian Brabandt --- diff --git a/runtime/syntax/tsv.vim b/runtime/syntax/tsv.vim new file mode 100644 index 0000000000..f0dd9f717d --- /dev/null +++ b/runtime/syntax/tsv.vim @@ -0,0 +1,12 @@ +" Vim filetype plugin file +" Language: Tab separated values (TSV) +" Last Change: 2024 Jul 16 +" This runtime file is looking for a new maintainer. + +if exists('b:current_syntax') + finish +endif + +let b:csv_delimiter = '\t' " enforce tab delimiter +runtime! syntax/csv.vim +let b:current_syntax = 'tsv'