I have 3 levels of folds in my file, all of which are created using {{{ }}}
, i.e.:
"Fold 1{{{
Fold level 1 text
"Fold2 {{{
Fold level 2 text
"}}}
"}}}
I would like to see the hierarchy of closed folds in Vim, i.e.:
+-- 1 Line: Fold 1
+---- 1 Line: Fold 2 " this could be indented
Is that possible?
No. As Fold2 is contained within Fold1, the entire outer Fold1 will be collapsed to a single line. You could only write a custom
'foldtext'
expression that checks for contained folds, and put that information into the single summary line. (I'm not sure whether such an expression might take up too much performance by going through all contained folds.)To get an overview of folds, I usually close all folds via
zM
, and then repetitively open levels viazr
.