]> git.madduck.net Git - etc/vim.git/blobdiff - test/indent.vader

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:

Go to the current header on Toc
[etc/vim.git] / test / indent.vader
index 76f49909ac76d817891243cf538f33683b9e81b6..aabf54ffd7f8836c445e089ca8d0c2f48299d2d8 100644 (file)
@@ -1,8 +1,8 @@
 Given markdown;
 * item1
 
-Do (Insert enter at list end):
-  A\<Enter>item2
+Do (insert enter at list end):
+  A\<cr>item2
 
 Expect (auto insert * and indent level is same):
   * item1
@@ -13,8 +13,8 @@ Given markdown;
 Execute:
   syntax off
 
-Do (Insert enter at list end with syntax off):
-  i* item1\<Enter>item2
+Do (insert enter at list end with syntax off):
+  i* item1\<cr>item2
 
 Expect (auto insert * and indent level is same):
   * item1
@@ -22,3 +22,29 @@ Expect (auto insert * and indent level is same):
 
 Execute:
   syntax on
+
+Given markdown;
+```
+* item1
+
+Do (insert after list items in code block):
+  jotext
+
+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