Merge pull request from kevinresol/patch-1

Don't decrease indent for "case" and "default"
This commit is contained in:
theRemix 2016-03-05 18:46:34 -10:00
commit b67de21dd6

View file

@ -3,4 +3,4 @@
'commentStart': '// '
'foldEndPattern': '^\\s*\\}|^\\s*\\]|^\\s*\\)'
'increaseIndentPattern': '(?x)\n\t\t(\n\t\t\t\\{ [^}"\']*\n\t\t|\t\\( [^)"\']*\n\t\t|\tcase[\\s\\S]*:\n\t\t|\tdefault:\n\t\t)\n\t\t$\n\t'
'decreaseIndentPattern': '^(.*\\*/)?\\s*(\\}|\\)|case|default)'
'decreaseIndentPattern': '^(.*\\*/)?\\s*(\\}|\\))'