godoc.vim (352B)
1 " Vim syntax file 2 " Language: Godoc (generated documentation for go) 3 " Maintainer: David Barnett (https://github.com/google/vim-ft-go) 4 " Last Change: 2014 Aug 16 5 6 if exists('b:current_syntax') 7 finish 8 endif 9 10 syn case match 11 syn match godocTitle "^\([A-Z][A-Z ]*\)$" 12 13 14 hi def link godocTitle Title 15 16 17 let b:current_syntax = 'godoc' 18 19 " vim: sw=2 sts=2 et