From c7b0334ceaeff87b8f55ca345e2bda7bfdfba58c Mon Sep 17 00:00:00 2001 From: Christian Clason Date: Tue, 16 Jul 2024 22:32:00 +0200 Subject: [PATCH] vim-patch:3698fbb: runtime(tsv): include simple syntax plugin fixes: vim/vim#15271 https://github.com/vim/vim/commit/3698fbbd7c35590dcc4708677d6c38f9009cf9a3 Co-authored-by: Christian Brabandt --- runtime/syntax/tsv.vim | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 runtime/syntax/tsv.vim 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'