vscode/extensions/perl/perl.language-configuration.json
Jesús Alonso Abad 89336a9155 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).
2019-03-29 13:55:06 +01:00

32 lines
412 B
JSON

{
"comments": {
"lineComment": "#"
},
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"]
],
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"],
["`", "`"]
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"],
["`", "`"]
],
"folding": {
"markers": {
"start": "^=pod\\s*$",
"end": "^=cut\\s*$"
}
}
}