godebugstacktrace.vim 185 B

1234567891011
  1. if exists("b:current_syntax")
  2. finish
  3. endif
  4. syn match godebugStacktrace '^\S\+'
  5. let b:current_syntax = "godebugoutput"
  6. hi def link godebugStacktrace SpecialKey
  7. " vim: sw=2 ts=2 et