diff --git a/extensions/configuration-editing/src/extension.ts b/extensions/configuration-editing/src/extension.ts index 8e44525175b..8643d5f643c 100644 --- a/extensions/configuration-editing/src/extension.ts +++ b/extensions/configuration-editing/src/extension.ts @@ -53,7 +53,7 @@ function updateLaunchJsonDecorations(editor: vscode.TextEditor) { let addPropertyAndValue = false; visit(editor.document.getText(), { onObjectProperty: (property, offset, length) => { - addPropertyAndValue = property === 'version' || property === 'type' || property === 'request'; + addPropertyAndValue = property === 'version' || property === 'type' || property === 'request' || property === 'configurations'; if (addPropertyAndValue) { ranges.push(new vscode.Range(editor.document.positionAt(offset), editor.document.positionAt(offset + length))); }