mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-08 09:08:48 +01:00
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:
@@ -22,5 +22,11 @@
|
||||
["\"", "\""],
|
||||
["'", "'"],
|
||||
["`", "`"]
|
||||
]
|
||||
],
|
||||
"folding": {
|
||||
"markers": {
|
||||
"start": "^=pod\\s*$",
|
||||
"end": "^=cut\\s*$"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user