diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-08-31 22:22:10 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-08-31 22:22:10 +0200 |
commit | f37506f60f87d52a9e8850e30067645e2b13783c (patch) | |
tree | a11d81f91e6ccb82f9ccdde6ad426ffbbaf3940f /runtime/syntax/godoc.vim | |
parent | c628fdcd46e93c308f742efdf54248695960e290 (diff) | |
download | vim-git-f37506f60f87d52a9e8850e30067645e2b13783c.tar.gz |
Updated runtime files. Remove HiLink commands.
Diffstat (limited to 'runtime/syntax/godoc.vim')
-rw-r--r-- | runtime/syntax/godoc.vim | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/runtime/syntax/godoc.vim b/runtime/syntax/godoc.vim index 3a07903a7..0603f51c8 100644 --- a/runtime/syntax/godoc.vim +++ b/runtime/syntax/godoc.vim @@ -10,11 +10,9 @@ endif syn case match syn match godocTitle "^\([A-Z][A-Z ]*\)$" -command -nargs=+ HiLink hi def link <args> -HiLink godocTitle Title +hi def link godocTitle Title -delcommand HiLink let b:current_syntax = 'godoc' |