diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2014-12-30 09:09:40 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-12-30 09:09:40 -0500 |
commit | b5c7fbf4b09334fce266ba9a644e3dd6980993a8 (patch) | |
tree | aa5023538237b1fdc8f2e505ded84939bd69106b /runtime/syntax/godoc.vim | |
parent | a31bcfb98afbe4d845911b4d90255c18769f197a (diff) | |
parent | 272f1064c74c745af4ac97ca1e46015fc7a6934d (diff) | |
download | rneovim-b5c7fbf4b09334fce266ba9a644e3dd6980993a8.tar.gz rneovim-b5c7fbf4b09334fce266ba9a644e3dd6980993a8.tar.bz2 rneovim-b5c7fbf4b09334fce266ba9a644e3dd6980993a8.zip |
Merge pull request #1744 from fwalch/vim-1e8ebf8
vim-patch:1e8ebf8 (missing runtime update)
Diffstat (limited to 'runtime/syntax/godoc.vim')
-rw-r--r-- | runtime/syntax/godoc.vim | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/runtime/syntax/godoc.vim b/runtime/syntax/godoc.vim new file mode 100644 index 0000000000..3a07903a77 --- /dev/null +++ b/runtime/syntax/godoc.vim @@ -0,0 +1,21 @@ +" Vim syntax file +" Language: Godoc (generated documentation for go) +" Maintainer: David Barnett (https://github.com/google/vim-ft-go) +" Last Change: 2014 Aug 16 + +if exists('b:current_syntax') + finish +endif + +syn case match +syn match godocTitle "^\([A-Z][A-Z ]*\)$" + +command -nargs=+ HiLink hi def link <args> + +HiLink godocTitle Title + +delcommand HiLink + +let b:current_syntax = 'godoc' + +" vim: sw=2 sts=2 et |