view runtime/syntax/godoc.vim @ 7016:8e6a279b5954

Add a .gitignore file, it's very similar to the .hgignore file.
author Bram Moolenaar <bram@vim.org>
date Thu, 13 Aug 2015 22:21:44 +0200
parents 1e8ebf870720
children 46763b01cd9a
line wrap: on
line source

" 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