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

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:

Fix indent after list items
authorderis0126 <deris0126@gmail.com>
Sat, 14 Jun 2014 08:47:13 +0000 (17:47 +0900)
committerHiroshi Shirosaki <h.shirosaki@gmail.com>
Mon, 1 Sep 2014 06:20:30 +0000 (15:20 +0900)
commit9f93f60f520ce3d4013cf1fb1eaafe541f92dfb9
tree79058a81a740f006b922bbe3a96d0c3555dca592
parentc6a731c5fa00ad7a776b99d28d31617e7a7c3210
Fix indent after list items

1. Fix not only *+- but also \ matched

Need not escape inside [] because backslash codes do not work inside [].
So pattern [\*+-] match also \.

2. Fix not only list but also horizontal are indented

If only space and three '*' or '-' character are in the line,
this line means horizontal item.
If current line is below horizontal item, it need not to indent.
Following example is horizontal item.

---
***
- - -
* * *

And list item must be specified space after [*-+].
Following example is list item.
* foo
- bar
+ baz

But following example is not list item.
*foo
-bar
+baz

Add indent test file for above bugs.

Fix #90
indent/mkd.vim
test/indent.md [new file with mode: 0644]