vimgo.vim 227 B

12345678910111213
  1. if exists("b:current_syntax")
  2. finish
  3. endif
  4. let b:current_syntax = "vimgo"
  5. syn match goInterface /^\S*/
  6. syn region goTitle start="\%1l" end=":"
  7. hi def link goInterface Type
  8. hi def link goTitle Label
  9. " vim: sw=2 ts=2 et