mirror of
1
0
Fork 0
ultimate-vim/sources_non_forked/vim-go/syntax/godebugoutput.vim

14 lines
255 B
VimL
Raw Normal View History

2018-03-31 10:56:26 -04:00
if exists("b:current_syntax")
finish
endif
syn match godebugOutputErr '^ERR:.*'
syn match godebugOutputOut '^OUT:.*'
let b:current_syntax = "godebugoutput"
hi def link godebugOutputErr Comment
hi def link godebugOutputOut Normal
" vim: sw=2 ts=2 et