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/jargon.vim | |
parent | c628fdcd46e93c308f742efdf54248695960e290 (diff) | |
download | vim-git-f37506f60f87d52a9e8850e30067645e2b13783c.tar.gz |
Updated runtime files. Remove HiLink commands.
Diffstat (limited to 'runtime/syntax/jargon.vim')
-rw-r--r-- | runtime/syntax/jargon.vim | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/runtime/syntax/jargon.vim b/runtime/syntax/jargon.vim index 97b03c347..415f2bc97 100644 --- a/runtime/syntax/jargon.vim +++ b/runtime/syntax/jargon.vim @@ -15,11 +15,9 @@ syn match jargonMark /{[^}]*}/ " Define the default highlighting. " Only when an item doesn't have highlighting yet -command -nargs=+ HiLink hi def link <args> -HiLink jargonChaptTitle Title -HiLink jargonEmailAddr Comment -HiLink jargonUrl Comment -HiLink jargonMark Label -delcommand HiLink +hi def link jargonChaptTitle Title +hi def link jargonEmailAddr Comment +hi def link jargonUrl Comment +hi def link jargonMark Label let b:current_syntax = "jargon" |