Looks like BufferScroll doesn’t save/remember nested code folding states.
Use case with code example below:
-
fold
one
andtwo
-
fold
top
-
unfold
top
Result: All nested one
and two
are unfolded suddenly! This is really annoying. Is there a way to configure it? So that the state of any nested folds is saved/remembered?
let top = {
one : {
two: {
foo: 'bar'
}
}
}