plasticboy/vim-markdown: Fix capitalization

This commit is contained in:
Ernst Widerberg
2018-05-27 13:33:39 +02:00
parent a28a0b1e77
commit 33021ae133

View File

@@ -323,7 +323,7 @@ call s:h("markdownCode", {"fg": s:norm, "bg": s:code_bg})
call s:h("markdownCodeDelimiter", {"fg": s:norm, "bg": s:code_bg})
" plasticboy/vim-markdown
call s:h("mkdBlockQuote", {"fg": s:norm})
call s:h("mkdBlockquote", {"fg": s:norm})
call s:h("mkdDelimiter", {"fg": s:medium_gray})
call s:h("mkdID", {"fg": s:medium_gray})
call s:h("mkdLineContinue", {"fg": s:norm})
@@ -332,7 +332,7 @@ call s:h("mkdLinkDef", {"fg": s:medium_gray})
call s:h("mkdListItem", {"fg": s:norm})
call s:h("mkdNonListItemBlock", {"fg": s:norm}) " bug in syntax?
call s:h("mkdRule", {"fg": s:norm})
call s:h("mkdUrl", {"fg": s:medium_gray, "gui": "underline", "cterm": "underline"})
call s:h("mkdURL", {"fg": s:medium_gray, "gui": "underline", "cterm": "underline"})
call s:h("mkdCode", {"fg": s:norm, "bg": s:code_bg})
call s:h("mkdIndentCode", {"fg": s:norm, "bg": s:code_bg})