]> git.madduck.net Git - etc/vim.git/commitdiff

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: improve performance
authortodesking <discommunicative@gmail.com>
Mon, 7 Apr 2014 16:02:51 +0000 (01:02 +0900)
committerHiroshi Shirosaki <h.shirosaki@gmail.com>
Tue, 8 Dec 2015 04:22:50 +0000 (13:22 +0900)
after/ftplugin/markdown.vim

index 94267eedb315b88c1f165763717a383db853136d..997ab9dd202812615f4dd3afad81b39758fa77d2 100644 (file)
@@ -11,7 +11,8 @@ func! s:is_mkdCode(lnum)
 endfunc
 
 func! s:effective_line(lnum)
-    return s:is_mkdCode(a:lnum) ? '' : getline(a:lnum)
+    let line = getline(a:lnum)
+    return (line !~ '^=\|^#' || s:is_mkdCode(a:lnum)) ? '' : line
 endfunc
 
 func! Foldexpr_markdown(lnum)