1
0
Fork 0
mirror of synced 2024-06-15 13:31:10 -04:00
ultimate-vim/sources_non_forked/vim-go/syntax/godebugstacktrace.vim

12 lines
185 B
VimL
Raw Normal View History

2018-03-31 10:56:26 -04:00
if exists("b:current_syntax")
finish
endif
syn match godebugStacktrace '^\S\+'
let b:current_syntax = "godebugoutput"
hi def link godebugStacktrace SpecialKey
" vim: sw=2 ts=2 et