From b77c5f11070ecb2ff343aa18b4ea859e6168f16c Mon Sep 17 00:00:00 2001 From: Adam Stankiewicz Date: Thu, 17 Feb 2022 04:31:35 +0100 Subject: Update --- syntax/markdown.vim | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'syntax/markdown.vim') diff --git a/syntax/markdown.vim b/syntax/markdown.vim index eeda03da..2c4d7951 100644 --- a/syntax/markdown.vim +++ b/syntax/markdown.vim @@ -11,7 +11,7 @@ endif " Read the HTML syntax to start with -if version < 600 +if v:version < 600 so :p:h/html.vim else runtime! syntax/html.vim @@ -21,14 +21,14 @@ else endif endif -if version < 600 +if v:version < 600 syntax clear -elseif exists("b:current_syntax") +elseif exists('b:current_syntax') finish endif " don't use standard HiLink, it will not work with included syntax files -if version < 508 +if v:version < 508 command! -nargs=+ HtmlHiLink hi link else command! -nargs=+ HtmlHiLink hi def link @@ -182,7 +182,7 @@ HtmlHiLink mkdLinkDefTarget mkdURL HtmlHiLink mkdLinkTitle htmlString HtmlHiLink mkdDelimiter Delimiter -let b:current_syntax = "mkd" +let b:current_syntax = 'mkd' delcommand HtmlHiLink " vim: ts=8 -- cgit v1.2.3