File: tsv.vim

package info (click to toggle)
vim 2%3A9.2.0218-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 96,428 kB
  • sloc: ansic: 435,795; cpp: 6,445; makefile: 4,644; sh: 2,569; java: 2,488; xml: 2,099; python: 1,716; perl: 1,419; awk: 730; lisp: 501; cs: 458; objc: 369; sed: 35; csh: 9; haskell: 1
file content (12 lines) | stat: -rw-r--r-- 298 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
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'