From: Ben Williams Date: Mon, 21 Feb 2011 15:47:41 +0000 (-0500) Subject: Merge branch 'master' of git://github.com/cgraeser/vim-markdown X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/3c2de6634dee38d4e4085b709442a2dff213c1ea?hp=ac8bc01256d732624db2821dc7a4c64605b4bf2a Merge branch 'master' of git://github.com/cgraeser/vim-markdown --- diff --git a/mkd.vim b/mkd.vim index b5b9700..c6ea381 100644 --- a/mkd.vim +++ b/mkd.vim @@ -84,6 +84,27 @@ syn region htmlH6 start="^\s*######" end="\($\|#\+\)" contain syn match htmlH1 /^.\+\n=\+$/ contains=@Spell syn match htmlH2 /^.\+\n-\+$/ contains=@Spell + + +" fold region for headings +syn region mkdHeaderFold + \ start="^\s*\z(#\+\)" + \ skip="^\s*\z1#\+" + \ end="^\(\s*#\)\@=" + \ fold contains=TOP + +" fold region for lists +syn region mkdListFold + \ start="^\z(\s*\)\*\z(\s*\)" + \ skip="^\z1 \z2\s*[^#]" + \ end="^\(.\)\@=" + \ fold contains=TOP + +syn sync fromstart +setlocal foldmethod=syntax + + + "highlighting for Markdown groups HtmlHiLink mkdString String HtmlHiLink mkdCode String