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

  1. Given markdown;
  2. * item1
  3. Do (Insert enter at list end):
  4. A\<Enter>item2
  5. Expect (auto insert * and indent level is same):
  6. * item1
  7. * item2
  8. Given markdown;
  9. Execute:
  10. syntax off
  11. Do (Insert enter at list end with syntax off):
  12. i* item1\<Enter>item2
  13. Expect (auto insert * and indent level is same):
  14. * item1
  15. * item2
  16. Execute:
  17. syntax on