mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-09 16:50:05 +08:00
20 lines
958 B
VimL
20 lines
958 B
VimL
if exists('b:current_syntax') && b:current_syntax ==# 'spacevim_cpicker_mix'
|
|
finish
|
|
endif
|
|
let b:current_syntax = 'spacevim_cpicker_mix'
|
|
syntax case ignore
|
|
|
|
syn match SpaceVimPickerMixProcessBar /[?=+]\+/
|
|
syn match SpaceVimPickerMixColor1P /P1/ contained
|
|
syn match SpaceVimPickerMixColor2P /P2/ contained
|
|
syn match SpaceVimPickerMixColor1 /#[0123456789ABCDEF]\+\s\+P1/ contains=SpaceVimPickerMixColor1P
|
|
syn match SpaceVimPickerMixColor2 /#[0123456789ABCDEF]\+\s\+P2/ contains=SpaceVimPickerMixColor2P
|
|
syn match SpaceVimPickerMixColor3 /=\+\s/
|
|
syn match SpaceVimPickerMixColor3Background /\s=\+\s/
|
|
syn match SpaceVimPickerMixColor3Code /\scolor-mix.....................................\|\s#......\s\s\s\s\s\s\s\s\s\s\s\s\s\s\s\s\s\s\s\s\s\s\s\s\s\s\s\s\s\s\s\s\s\s\s\s\s\s\s/
|
|
|
|
highlight SpaceVimPickerMixProcessBar ctermfg=Gray ctermbg=Gray guifg=Gray guibg=Gray
|
|
highlight link SpaceVimPickerMixColor1P Normal
|
|
highlight link SpaceVimPickerMixColor2P Normal
|
|
|