xref: /vim-8.2.3635/runtime/syntax/godoc.vim (revision cb03397a)
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
13command -nargs=+ HiLink hi def link <args>
14
15HiLink godocTitle Title
16
17delcommand HiLink
18
19let b:current_syntax = 'godoc'
20
21" vim: sw=2 sts=2 et
22