X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/642730fccce7e78c995389f3c430747d266efa96..33cf9894dec8264f6461357254c7622006459810:/test/indent.vader diff --git a/test/indent.vader b/test/indent.vader index 76f4990..e0870d5 100644 --- a/test/indent.vader +++ b/test/indent.vader @@ -1,8 +1,8 @@ Given markdown; * item1 -Do (Insert enter at list end): - A\item2 +Do (insert enter at list end): + A\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\item2 +Do (insert enter at list end with syntax off): + i* item1\item2 Expect (auto insert * and indent level is same): * item1 @@ -22,3 +22,52 @@ 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\b + +Expect (no autoindent outside list): + * item1 + + + ba + +Given markdown; +- a + + # b + +Do (insert header after list): + jjwi# + +Expect (no indent header after list): + - a + + ## b + +Given markdown; +* item1 + +Do (new line from the first item of the list and add the second item): + o* item2 + +Expect (insert 4 spaces to the head of second item): + * item1 + * item2