gabrielelana / vim-markdown

Markdown for Vim: a complete environment to create Markdown files with a syntax highlight that doesn't suck!
MIT License
741 stars 58 forks source link

Feature: Backspace to unindent empty list item #72

Open lewisthompson opened 6 years ago

lewisthompson commented 6 years ago

Great plugin! In empty list items it would be great if <BS> could be mapped to unindent in much the same way as <S-Tab> does. Perhaps something like:

    inoremap <silent> <buffer> <script> <expr> <BS>
      \ <SID>IsAnEmptyListItem() \|\| <SID>IsAnEmptyQuote() ? '<C-O>:call <SID>Indent(0)<CR>' : '<BS>'