With this code:
func my_func(input):
var value = 0
match input:
"A":
value = 1
"B":
value = 2
if value != 0:
return true
If I fold the match line, and the if line, I see:
func my_func(input):
var value = 0
match input: (...)
if value != 0: (...)
If I then fold my_func and unfold it again, I see all the code.
Is there a way to unfold my_func that preserves my previous folds?
OR unfold just one indent level at a time?
Thanks
Toby