You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
952 B
17 lines
952 B
runtime syntax/sep.vim
|
|
syn match Tcolumn6 /.\{-}\(,\|$\)/ nextgroup=Tcolumn0
|
|
syn match Tcolumn5 /.\{-}\(,\|$\)/ nextgroup=Tcolumn6
|
|
syn match Tcolumn4 /.\{-}\(,\|$\)/ nextgroup=Tcolumn5
|
|
syn match Tcolumn3 /.\{-}\(,\|$\)/ nextgroup=Tcolumn4
|
|
syn match Tcolumn2 /.\{-}\(,\|$\)/ nextgroup=Tcolumn3
|
|
syn match Tcolumn1 /.\{-}\(,\|$\)/ nextgroup=Tcolumn2
|
|
syn match Tcolumn0 /.\{-}\(,\|$\)/ nextgroup=Tcolumn1
|
|
syn match Tcolumn6title /\%1l.\{-}\(,\|$\)/ nextgroup=Tcolumn0title
|
|
syn match Tcolumn5title /\%1l.\{-}\(,\|$\)/ nextgroup=Tcolumn6title
|
|
syn match Tcolumn4title /\%1l.\{-}\(,\|$\)/ nextgroup=Tcolumn5title
|
|
syn match Tcolumn3title /\%1l.\{-}\(,\|$\)/ nextgroup=Tcolumn4title
|
|
syn match Tcolumn2title /\%1l.\{-}\(,\|$\)/ nextgroup=Tcolumn3title
|
|
syn match Tcolumn1title /\%1l.\{-}\(,\|$\)/ nextgroup=Tcolumn2title
|
|
syn match Tcolumn0title /\%1l.\{-}\(,\|$\)/ nextgroup=Tcolumn1title
|
|
syn match Tdiv /,/ containedin=ALL conceal cchar=|
|
|
setlocal conceallevel=2
|
|
|