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

No autoindent after the list
authorHiroshi Shirosaki <h.shirosaki@gmail.com>
Mon, 25 Jan 2016 01:02:41 +0000 (10:02 +0900)
committerHiroshi Shirosaki <h.shirosaki@gmail.com>
Mon, 25 Jan 2016 01:02:41 +0000 (10:02 +0900)
Fix #198

indent/markdown.vim
test/indent.vader

index e21f2879a9a1d4bd000a6450df54f43879dcda0b..b38a37cce80dc45ea4bec89a5c44851293ec94e0 100755 (executable)
@@ -41,6 +41,9 @@ function! s:prevnonblank(lnum)
 endfunction
 
 function GetMarkdownIndent()
+    if v:lnum > 2 && s:is_blank_line(getline(v:lnum - 1)) && s:is_blank_line(getline(v:lnum - 2))
+        return 0
+    endif
     let list_ind = 4
     " Find a non-blank line above the current line.
     let lnum = prevnonblank(v:lnum - 1)
index 3cc50101df9c1c104e482a44abe5fc07a56f2ad1..aabf54ffd7f8836c445e089ca8d0c2f48299d2d8 100644 (file)
@@ -2,7 +2,7 @@ Given markdown;
 * item1
 
 Do (insert enter at list end):
-  A\<Enter>item2
+  A\<cr>item2
 
 Expect (auto insert * and indent level is same):
   * item1
@@ -14,7 +14,7 @@ Execute:
   syntax off
 
 Do (insert enter at list end with syntax off):
-  i* item1\<Enter>item2
+  i* item1\<cr>item2
 
 Expect (auto insert * and indent level is same):
   * item1
@@ -34,3 +34,17 @@ Expect (no autoindent in code block):
   ```
   * item1
   text
+
+Given markdown;
+* item1
+
+a
+
+Do (insert enter after list):
+  jji\<cr>b
+
+Expect (no autoindent outside list):
+  * item1
+
+
+  ba