bullets.vim icon indicating copy to clipboard operation
bullets.vim copied to clipboard

Automatic Alphanumeric List Insertion Implementation Messes Up Unordered Lists

Open pappasam opened this issue 6 years ago • 0 comments

The new implementation of alphanumeric list insertion messes up indentation for regular, unordered lists. I want to keep using "-" or "*" for all indented levels in my markdown, but it's no obvious for users to configure this. See screenshot of the problem:

vim-list-indented

After reading the source code, I figured out a hacky fix that I've personally implemented:

let g:bullets_outline_levels = ['ROM', 'ABC', 'num', 'abc', 'rom']

This is a cludgy fix that may end up losing users whose editor expects a less-intrusive list indentation default. I'd suggest either fixing behavior for regular unordered lists or removing 'std-', 'std*', and 'std+' from the outline levels by default and documenting how a user can override this if need-be.

pappasam avatar Mar 18 '20 14:03 pappasam