]> 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:

Toc: Pass errors if no atx headers are processed.
authorFelipe Morales <hel.sheep@gmail.com>
Tue, 8 Jul 2014 02:20:22 +0000 (22:20 -0400)
committerFelipe Morales <hel.sheep@gmail.com>
Tue, 8 Jul 2014 02:20:22 +0000 (22:20 -0400)
Fixes issue #102

ftplugin/mkd.vim

index 21292030079543fc33f55e0f5bdf5158bd426f61..e177bd13c79f07ee8641fec69cc7c337444857cc 100644 (file)
@@ -319,7 +319,7 @@ function! s:Markdown_Toc(...)
         copen
     endif
     set modifiable
-    %s/\v^([^|]*\|){2,2} #//
+    %s/\v^([^|]*\|){2,2} #//e
     for i in range(1, line('$'))
         " this is the quickfix data for the current item
         let d = getqflist()[i-1]