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 6if exists('b:current_syntax') 7 finish 8endif 9 10syn case match 11syn match godocTitle "^\([A-Z][A-Z ]*\)$" 12 13 14hi def link godocTitle Title 15 16 17let b:current_syntax = 'godoc' 18 19" vim: sw=2 sts=2 et 20