SublimeText-Markdown / MarkdownEditing

Powerful Markdown package for Sublime Text with better syntax understanding and good color schemes.
MIT License
3.19k stars 649 forks source link

List indentation symbol alternation #748

Closed willrowe closed 8 months ago

willrowe commented 8 months ago

I'm not sure if this is a bug or if this was changed intentionally, but when adding a list item I used to be able to tab or shift + tab and the symbol would alternate between -, +, and *. Now it uses the same symbol that the list was created with.

deathaxe commented 8 months ago

This behavior is controlled by

https://github.com/SublimeText-Markdown/MarkdownEditing/blob/bcf8d0be998eb29109377fa29c3cb149ace2a262/Preferences.sublime-settings#L47-L49

The default value was changed to false as most documents found on web seem to use - only.

willrowe commented 8 months ago

@deathaxe thanks for pointing that out! Did you intentionally change mde.list_indent_auto_switch_bullet from true to false?

deathaxe commented 8 months ago

The default value was changed to false as most documents found on web seem to use - only.

willrowe commented 8 months ago

Sorry, missed that, blended in with the code preview. Thanks again!