src/vs/platform/plugins -> src/vs/platform/extensions

This commit is contained in:
Alex Dima
2016-03-01 11:51:39 +01:00
parent 77e25ac921
commit 07b3df70d1
33 changed files with 75 additions and 79 deletions

View File

@@ -21,7 +21,7 @@ export function activate(context: ExtensionContext): any {
let validator = new PHPValidationProvider();
validator.activate(context.subscriptions);
// need to set in the plugin host as well as the completion provider uses it.
// need to set in the extension host as well as the completion provider uses it.
languages.setLanguageConfiguration('php', {
wordPattern: /(-?\d*\.\d\w*)|([^\-\`\~\!\@\#\%\^\&\*\(\)\=\+\[\{\]\}\\\|\;\:\'\"\,\.\<\>\/\?\s]+)/g
});