1
mirror of https://github.com/neovim/neovim.git synced 2025-01-01 17:23:36 -07:00
neovim/runtime/syntax/tsv.vim

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
298 B
VimL
Raw Normal View History

" 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'