From 89bcfda6834aba724d12554a34b9ed49f5789fd5 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Tue, 30 Aug 2016 23:26:57 +0200 Subject: Updated runtime files. Remove version checks for Vim older than 6.0. --- runtime/syntax/smarty.vim | 38 +++++++++++++++----------------------- 1 file changed, 15 insertions(+), 23 deletions(-) (limited to 'runtime/syntax/smarty.vim') diff --git a/runtime/syntax/smarty.vim b/runtime/syntax/smarty.vim index 6dda366ba..ab8e85dce 100644 --- a/runtime/syntax/smarty.vim +++ b/runtime/syntax/smarty.vim @@ -8,11 +8,10 @@ " For version 5.x: Clear all syntax items " For version 6.x: Quit when a syntax file was already loaded if !exists("main_syntax") - if version < 600 - syntax clear - elseif exists("b:current_syntax") - finish -endif + " quit when a syntax file was already loaded + if exists("b:current_syntax") + finish + endif let main_syntax = 'smarty' endif @@ -57,25 +56,18 @@ syn region htmlString contained start=+'+ end=+'+ contains=htmlSpecialChar,ja syn region htmlLink start="\_[^>]*\" end=""me=e-4 contains=@Spell,htmlTag,htmlEndTag,htmlSpecialChar,htmlPreProc,htmlComment,javaScript,@htmlPreproc,smartyZone -if version >= 508 || !exists("did_smarty_syn_inits") - if version < 508 - let did_smarty_syn_inits = 1 - command -nargs=+ HiLink hi link - else - command -nargs=+ HiLink hi def link - endif +command -nargs=+ HiLink hi def link - HiLink smartyTagName Identifier - HiLink smartyProperty Constant - " if you want the text inside the braces to be colored, then - " remove the comment in from of the next statement - "HiLink smartyZone Include - HiLink smartyInFunc Function - HiLink smartyBlock Constant - HiLink smartyDot SpecialChar - HiLink smartyModifier Function - delcommand HiLink -endif +HiLink smartyTagName Identifier +HiLink smartyProperty Constant +" if you want the text inside the braces to be colored, then +" remove the comment in from of the next statement +"HiLink smartyZone Include +HiLink smartyInFunc Function +HiLink smartyBlock Constant +HiLink smartyDot SpecialChar +HiLink smartyModifier Function +delcommand HiLink let b:current_syntax = "smarty" -- cgit v1.2.1