Skip to content

Commit

Permalink
Merge pull request #46885 from brettcannon/patch-1
Browse files Browse the repository at this point in the history
Allow a space between # and `region` for folding in Python
  • Loading branch information
aeschli authored Apr 16, 2018
2 parents 21ef28c + 2f581e8 commit efd3ac4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions extensions/python/language-configuration.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@
"folding": {
"offSide": true,
"markers": {
"start": "^\\s*#region\\b",
"end": "^\\s*#endregion\\b"
"start": "^\\s*#\\s*region\\b",
"end": "^\\s*#\\s*endregion\\b"
}
}
}

0 comments on commit efd3ac4

Please sign in to comment.