1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-13 23:57:59 +08:00
SpaceVim/bundle/cpicker.nvim/syntax/spacevim_cpicker.vim

14 lines
506 B
VimL
Raw Normal View History

2024-07-12 00:31:36 +08:00
if exists('b:current_syntax') && b:current_syntax ==# 'spacevim_cpicker'
finish
endif
let b:current_syntax = 'spacevim_cpicker'
syntax case ignore
syn match ProcessBar /[?=+]\+/
" syn match SpaceVimPickerCode /\s#[0123456789ABCDEF]\+\|\srgb(\d\+,\s\d\+,\s\d\+)\|\shsl(\d\+,\s\d\+%,\s\d\+%)\|\shsv(\d\+,\s\d\+%,\s\d\+%)\|\scmyk(\d\+%,\s\d\+%,\s\d\+%,\s\d\+%)\|\shwb(\d\+,\s\d\+%,\s\d\+%)/
syn match SpaceVimPickerBackground /=\+\s/
2024-07-12 00:31:36 +08:00
highlight ProcessBar ctermfg=Gray ctermbg=Gray guifg=Gray guibg=Gray