php: revert break deindent behavior

Fixes https://github.com/microsoft/vscode/issues/104836
This commit is contained in:
Connor Peet 2020-11-04 15:40:46 -08:00
parent 6bbb17d318
commit f4e49a5f3a
No known key found for this signature in database
GPG key ID: CF8FD2EA0DBC61BD
2 changed files with 2 additions and 3 deletions

View file

@ -11,8 +11,7 @@
],
"stopOnEntry": false,
"sourceMaps": true,
"outDir": "${workspaceFolder}/out",
"preLaunchTask": "npm"
}
]
}
}

View file

@ -26,7 +26,7 @@
],
"indentationRules": {
"increaseIndentPattern": "({(?!.*}).*|\\(|\\[|((else(\\s)?)?if|else|for(each)?|while|switch|case).*:)\\s*((/[/*].*|)?$|\\?>)",
"decreaseIndentPattern": "^(.*\\*\\/)?\\s*((\\})|(\\)+[;,])|(\\][;,])|\\b(else:)|\\b((end(if|for(each)?|while|switch)|break);))"
"decreaseIndentPattern": "^(.*\\*\\/)?\\s*((\\})|(\\)+[;,])|(\\][;,])|\\b(else:)|\\b((end(if|for(each)?|while|switch));))"
},
"folding": {
"markers": {