godebugoutput.vim 255 B

12345678910111213
  1. if exists("b:current_syntax")
  2. finish
  3. endif
  4. syn match godebugOutputErr '^ERR:.*'
  5. syn match godebugOutputOut '^OUT:.*'
  6. let b:current_syntax = "godebugoutput"
  7. hi def link godebugOutputErr Comment
  8. hi def link godebugOutputOut Normal
  9. " vim: sw=2 ts=2 et