]> git.madduck.net Git - etc/vim.git/blob - after/ftplugin/markdown.vim

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Foldmethod: ignore title-like lines in code block
[etc/vim.git] / after / ftplugin / markdown.vim
1 " folding for Markdown headers, both styles (atx- and setex-)
2 " http://daringfireball.net/projects/markdown/syntax#header
3 "
4 " this code can be placed in file
5 "   $HOME/.vim/after/ftplugin/markdown.vim
6 "
7 " original version from Steve Losh's gist: https://gist.github.com/1038710
8
9 func! s:is_mkdCode(lnum)
10     return synIDattr(synID(a:lnum, 1, 0), 'name') == 'mkdCode'
11 endfunc
12
13 func! s:effective_line(lnum)
14     return s:is_mkdCode(a:lnum) ? '' : getline(a:lnum)
15 endfunc
16
17 func! Foldexpr_markdown(lnum)
18     if (a:lnum == 1)
19         let l0 = ''
20     else
21         let l0 = s:effective_line(a:lnum-1)
22     endif
23
24     let l1 = s:effective_line(a:lnum)
25
26     let l2 = s:effective_line(a:lnum+1)
27
28     if  l2 =~ '^==\+\s*'
29         " next line is underlined (level 1)
30         return '>1'
31     elseif l2 =~ '^--\+\s*'
32         " next line is underlined (level 2)
33         return '>2'
34     elseif l1 =~ '^#'
35         " don't include the section title in the fold
36         return '-1'
37     elseif l0 =~ '^#'
38         " current line starts with hashes
39         return '>'.matchend(l0, '^#\+')
40     else
41         " keep previous foldlevel
42         return '='
43     endif
44 endfunc
45
46
47 if !get(g:, "vim_markdown_folding_disabled", 0)
48   setlocal foldexpr=Foldexpr_markdown(v:lnum)
49   setlocal foldmethod=expr
50 endif