preservim / vim-markdown

Markdown Vim Mode
4.69k stars 524 forks source link

Usability feedback: disable auto-indent lists with o #535

Open eduardoarandah opened 3 years ago

eduardoarandah commented 3 years ago

When doing a list, what I would expect is

- one
- two
- three

But when clicking <esc>o I get:

- one
    - two
       - three

It can be fixed it with g:vim_markdown_new_list_item_indent = 0
but IMHO nested lists aren't that common to be worth indent every time :-)

thakichowdhury commented 3 years ago

I definitely agree! This was a pain point until I disabled it.