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.
25 lines
757 B
25 lines
757 B
" syntax/stdgather.vim
|
|
|
|
" Clear previous syntax
|
|
syntax clear
|
|
|
|
" Match and highlight time format HH:MM:SS.microseconds in light blue
|
|
syntax match LogTime /\v\d{2}:\d{2}:\d{2}\.\d{6}/
|
|
highlight LogTime ctermfg=LightBlue guifg=LightBlue
|
|
|
|
" Match and highlight ' (O) ' in green
|
|
syntax match LogOut /\v\s\(O\)\s/
|
|
highlight LogOut ctermfg=Green guifg=Green
|
|
|
|
" Match and highlight ' (E) ' in red
|
|
syntax match LogErr /\v\s\(E\)\s/
|
|
highlight LogErr ctermfg=Red guifg=Red
|
|
|
|
" Match and highlight ' (?) ' in blue
|
|
syntax match LogKernel /\v\s\(\?\)\s/
|
|
highlight LogKernel ctermfg=Blue guifg=Blue
|
|
|
|
" Match the first line if it starts with Cmd: ' and ends with a single quote
|
|
syntax match LogCmdLine /\%1l^Cmd: '.*'$/
|
|
highlight LogCmdLine ctermfg=LightGrey guifg=DarkGrey
|