Markdown Vim Mode
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

24 lines
347 B

Given markdown;
* item1
Do (Insert enter at list end):
A\<Enter>item2
Expect (auto insert * and indent level is same):
* item1
* item2
Given markdown;
Execute:
syntax off
Do (Insert enter at list end with syntax off):
i* item1\<Enter>item2
Expect (auto insert * and indent level is same):
* item1
* item2
Execute:
syntax on