1
0
mirror of https://github.com/amix/vimrc synced 2025-07-05 07:25:00 +08:00

Update vim-markdown.

This commit is contained in:
Kurtis Moxley
2022-05-19 22:45:21 +08:00
parent e3f0835434
commit 0883030a2b
19 changed files with 217 additions and 150 deletions

View File

@ -7,7 +7,7 @@
" Read the HTML syntax to start with
if version < 600
if v:version < 600
so <sfile>:p:h/html.vim
else
runtime! syntax/html.vim
@ -17,14 +17,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 <args>
else
command! -nargs=+ HtmlHiLink hi def link <args>
@ -178,7 +178,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