Perl5 support to fold POD blocks

POD blocks (as defined with the =pod and =cut tags) should be foldable.
This documentation format is excessively verbose and clutters the file
when other sections are folded (especially after a "fold all"
operation).
This commit is contained in:
Jesús Alonso Abad 2019-03-29 13:55:06 +01:00
parent 4039ea8718
commit 89336a9155

View file

@ -22,5 +22,11 @@
["\"", "\""],
["'", "'"],
["`", "`"]
]
],
"folding": {
"markers": {
"start": "^=pod\\s*$",
"end": "^=cut\\s*$"
}
}
}