Merge remote-tracking branch 'origin/master' into alex/tokenization

This commit is contained in:
Alex Dima
2017-01-05 12:31:43 +01:00
200 changed files with 4313 additions and 2328 deletions

View File

@@ -67,7 +67,7 @@ export class PackageJSONContribution implements IJSONContribution {
let name = keys[0];
let insertText = new SnippetString().appendText(JSON.stringify(name));
if (addValue) {
insertText.appendText(': ').appendPlaceholder('*');
insertText.appendText(': "').appendPlaceholder('').appendText('"');
if (!isLast) {
insertText.appendText(',');
}
@@ -99,7 +99,7 @@ export class PackageJSONContribution implements IJSONContribution {
this.mostDependedOn.forEach((name) => {
let insertText = new SnippetString().appendText(JSON.stringify(name));
if (addValue) {
insertText.appendText(': ').appendPlaceholder('*');
insertText.appendText(': "').appendPlaceholder('').appendText('"');
if (!isLast) {
insertText.appendText(',');
}