20 changed files with 81 additions and 98 deletions
@ -1,2 +0,0 @@ |
|||||
let b:div = "," |
|
||||
runtime! after/ftplugin/sep.vim |
|
@ -1,2 +0,0 @@ |
|||||
let b:div = "\t" |
|
||||
runtime! after/ftplugin/sep.vim |
|
@ -1,8 +0,0 @@ |
|||||
; extends |
|
||||
((pseudo_class_selector) @type (#set! "priority" 125)) |
|
||||
((class_selector) @type (#set! "priority" 125)) |
|
||||
((plain_value) @constant (#set! "priority" 125)) |
|
||||
((id_selector) @constructor (#set! "priority" 125)) |
|
||||
(tag_name) @tag |
|
||||
(unit) @keyword |
|
||||
(property_name) @field |
|
@ -1,5 +0,0 @@ |
|||||
; extends |
|
||||
|
|
||||
(jsx_self_closing_element (identifier) @tag (#set! "priority" 127)) |
|
||||
(jsx_opening_element (identifier) @tag (#set! "priority" 127)) |
|
||||
(jsx_closing_element (identifier) @tag (#set! "priority" 127)) |
|
@ -1,3 +0,0 @@ |
|||||
; extends |
|
||||
|
|
||||
(function_call (identifier) @function (#set! "priority" 130)) |
|
@ -1,2 +0,0 @@ |
|||||
; extends |
|
||||
((nesting_selector) @keyword (#set! "priority" 125)) |
|
@ -1,5 +0,0 @@ |
|||||
; extends |
|
||||
|
|
||||
(jsx_self_closing_element (identifier) @tag (#set! "priority" 127)) |
|
||||
(jsx_opening_element (identifier) @tag (#set! "priority" 127)) |
|
||||
(jsx_closing_element (identifier) @tag (#set! "priority" 127)) |
|
@ -1,17 +0,0 @@ |
|||||
runtime! after/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 |
|
@ -1,24 +0,0 @@ |
|||||
syn match bluebg /\<blue\>\s*/ containedin=ALL |
|
||||
syn match magentabg /\<magenta\>\s*/ containedin=ALL |
|
||||
syn match yellowbg /\<yellow\>\s*/ containedin=ALL |
|
||||
syn match violetbg /\<violet\>\s*/ containedin=ALL |
|
||||
syn match greenbg /\<green\>\s*/ containedin=ALL |
|
||||
syn match cyanbg /\<cyan\>\s*/ containedin=ALL |
|
||||
syn match orangebg /\<orange\>\s*/ containedin=ALL |
|
||||
|
|
||||
hi def link Tdiv Refbase01 |
|
||||
hi def link Tcolumn0 Refblue |
|
||||
hi def link Tcolumn0title Refblueu |
|
||||
hi def link Tcolumn1 Refmagenta |
|
||||
hi def link Tcolumn1title Refmagentau |
|
||||
hi def link Tcolumn2 Refyellow |
|
||||
hi def link Tcolumn2title Refyellowu |
|
||||
hi def link Tcolumn3 Refviolet |
|
||||
hi def link Tcolumn3title Refvioletu |
|
||||
hi def link Tcolumn4 Refgreen |
|
||||
hi def link Tcolumn4title Refgreenu |
|
||||
hi def link Tcolumn5 Refcyan |
|
||||
hi def link Tcolumn5title Refcyanu |
|
||||
hi def link Tcolumn6 Reforange |
|
||||
hi def link Tcolumn6title Reforangeu |
|
||||
setl nowrap |
|
@ -0,0 +1,2 @@ |
|||||
|
let b:div = "," |
||||
|
runtime! ftplugin/sep.vim |
@ -0,0 +1,2 @@ |
|||||
|
let b:div = "\t" |
||||
|
runtime! ftplugin/sep.vim |
@ -0,0 +1,30 @@ |
|||||
|
runtime! syntax/sep.vim |
||||
|
|
||||
|
syn match Ttrue / \zsTRUE\s*\ze\( \|$\)/ |
||||
|
hi def link Ttrue greenbg |
||||
|
|
||||
|
syn match Tfalse / \zsFALSE\s*\ze\( \|$\)/ |
||||
|
hi def link Tfalse redbg |
||||
|
|
||||
|
syn match Tna / \zsNA\s*\ze\( \|$\)/ |
||||
|
hi def link Tna bluebg |
||||
|
|
||||
|
|
||||
|
syn match Tcolumn6 /.\{-}\(,\|$\)/ nextgroup=Tcolumn0 contains=Ttrue,Tfalse,Tna |
||||
|
syn match Tcolumn5 /.\{-}\(,\|$\)/ nextgroup=Tcolumn6 contains=Ttrue,Tfalse,Tna |
||||
|
syn match Tcolumn4 /.\{-}\(,\|$\)/ nextgroup=Tcolumn5 contains=Ttrue,Tfalse,Tna |
||||
|
syn match Tcolumn3 /.\{-}\(,\|$\)/ nextgroup=Tcolumn4 contains=Ttrue,Tfalse,Tna |
||||
|
syn match Tcolumn2 /.\{-}\(,\|$\)/ nextgroup=Tcolumn3 contains=Ttrue,Tfalse,Tna |
||||
|
syn match Tcolumn1 /.\{-}\(,\|$\)/ nextgroup=Tcolumn2 contains=Ttrue,Tfalse,Tna |
||||
|
syn match Tcolumn0 /.\{-}\(,\|$\)/ nextgroup=Tcolumn1 contains=Ttrue,Tfalse,Tna |
||||
|
syn match Tcolumn6title /\%1l.\{-}\(,\|$\)/ nextgroup=Tcolumn0title contains=Ttrue,Tfalse,Tna |
||||
|
syn match Tcolumn5title /\%1l.\{-}\(,\|$\)/ nextgroup=Tcolumn6title contains=Ttrue,Tfalse,Tna |
||||
|
syn match Tcolumn4title /\%1l.\{-}\(,\|$\)/ nextgroup=Tcolumn5title contains=Ttrue,Tfalse,Tna |
||||
|
syn match Tcolumn3title /\%1l.\{-}\(,\|$\)/ nextgroup=Tcolumn4title contains=Ttrue,Tfalse,Tna |
||||
|
syn match Tcolumn2title /\%1l.\{-}\(,\|$\)/ nextgroup=Tcolumn3title contains=Ttrue,Tfalse,Tna |
||||
|
syn match Tcolumn1title /\%1l.\{-}\(,\|$\)/ nextgroup=Tcolumn2title contains=Ttrue,Tfalse,Tna |
||||
|
syn match Tcolumn0title /\%1l.\{-}\(,\|$\)/ nextgroup=Tcolumn1title contains=Ttrue,Tfalse,Tna |
||||
|
syn match Tdiv /,/ containedin=ALL conceal cchar=| |
||||
|
|
||||
|
|
||||
|
setlocal conceallevel=2 |
@ -0,0 +1,19 @@ |
|||||
|
hi def link Tdiv base01 |
||||
|
hi def link Tcolumn0 blue |
||||
|
hi def link Tcolumn0title blueu |
||||
|
hi def link Tcolumn1 magenta |
||||
|
hi def link Tcolumn1title magentau |
||||
|
hi def link Tcolumn2 yellow |
||||
|
hi def link Tcolumn2title yellowu |
||||
|
hi def link Tcolumn3 violet |
||||
|
hi def link Tcolumn3title violetu |
||||
|
hi def link Tcolumn4 green |
||||
|
hi def link Tcolumn4title greenu |
||||
|
hi def link Tcolumn5 cyan |
||||
|
hi def link Tcolumn5title cyanu |
||||
|
hi def link Tcolumn6 orange |
||||
|
hi def link Tcolumn6title orangeu |
||||
|
|
||||
|
|
||||
|
|
||||
|
setl nowrap |
@ -1,4 +1,4 @@ |
|||||
runtime! after/syntax/sep.vim |
runtime! syntax/sep.vim |
||||
syn match Tcolumn6 /.\{-}\(\t\|$\)/ nextgroup=Tcolumn0 |
syn match Tcolumn6 /.\{-}\(\t\|$\)/ nextgroup=Tcolumn0 |
||||
syn match Tcolumn5 /.\{-}\(\t\|$\)/ nextgroup=Tcolumn6 |
syn match Tcolumn5 /.\{-}\(\t\|$\)/ nextgroup=Tcolumn6 |
||||
syn match Tcolumn4 /.\{-}\(\t\|$\)/ nextgroup=Tcolumn5 |
syn match Tcolumn4 /.\{-}\(\t\|$\)/ nextgroup=Tcolumn5 |
Loading…
Reference in new issue