mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-26 13:19:42 +00:00
Merge remote-tracking branch 'origin/master' into alex/tokenization
This commit is contained in:
@@ -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(',');
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user