summaryrefslogtreecommitdiffstats
path: root/syntax/godoc.vim
diff options
context:
space:
mode:
authorAdam Stankiewicz <sheerun@sher.pl>2014-08-12 23:45:36 +0200
committerAdam Stankiewicz <sheerun@sher.pl>2014-08-12 23:45:36 +0200
commit90b24287deb9da69a8079599b8525e2be412f7f2 (patch)
tree78225d68b68f45ffa55d9fc84b10e64941abf96a /syntax/godoc.vim
parent5f1223fbc5285689db812236c9100329740a805b (diff)
downloadvim-polyglot-90b24287deb9da69a8079599b8525e2be412f7f2.tar.gz
vim-polyglot-90b24287deb9da69a8079599b8525e2be412f7f2.zip
Update
Diffstat (limited to 'syntax/godoc.vim')
-rw-r--r--syntax/godoc.vim20
1 files changed, 0 insertions, 20 deletions
diff --git a/syntax/godoc.vim b/syntax/godoc.vim
deleted file mode 100644
index bd4443f7..00000000
--- a/syntax/godoc.vim
+++ /dev/null
@@ -1,20 +0,0 @@
-" Copyright 2011 The Go Authors. All rights reserved.
-" Use of this source code is governed by a BSD-style
-" license that can be found in the LICENSE file.
-
-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:ts=4 sts=2 sw=2: