Feel-ix-343/markdown-oxide

Lists do not fold as expected.

Closed this issue · 1 comments

When folding a list, one would expect it to fold in the following manner:

- parent a
    - child
    - ...
- parent b
    - child
    - ...

// Becomes...
- parent a ...
- parent b ...

But how it's currently folding is as follows:

- parent a ...
// parent b is eaten by parent a

This makes it difficult to zoom in/zoom out of different contexts in the list.

Ah this is definitely annoying. You may be able to fix this by refreshing treesitter through a :e

Unfortunately, oxide is unrelated to folding in Neovim, and it generally leaves ui things like this to the dedicated editor.

Hope you figure it out!