Mercurial > vim
view runtime/syntax/godoc.vim @ 9744:6f5387822253 v7.4.2147
commit https://github.com/vim/vim/commit/abb71fbd399772d467aaa7b34b958b0f975c7e65
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Aug 2 22:51:42 2016 +0200
patch 7.4.2147
Problem: test_alot fails.
Solution: Close window.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 02 Aug 2016 23:00:06 +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