Open RyanRiffle opened 9 years ago
Tab (which would usually be what carries the list/bullet to the indent) doesn't function at all. Using the List/bullet button again restarts the count.
Right now it gets the current paragraph, and inserts a list after it. The list object inherits from Paragraph so it doesn't indent. It would be simple to make the button work just checking for whether the current paragraph is an instanceof a list, then inserting another. I am just not sure if the Poe.TextCursor implementation is able to support nested Poe.Paragraph (Since the list inherits from Poe.Paragraph)
Nested lists need to be added, as noted by @MrSchism. Poe.TextCursor is the primary thing that might be blocking this.