We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a916eac commit 96d12a3Copy full SHA for 96d12a3
src/extension/extensionInit.ts
@@ -215,7 +215,7 @@ export async function registerDebugger(context: IExtensionContext): Promise<IExt
215
216
context.subscriptions.push(
217
workspace.onDidChangeConfiguration((event: ConfigurationChangeEvent) => {
218
- if (event.affectsConfiguration('debugpy')) {
+ if (event.affectsConfiguration('debugpy.showPythonInlineValues')) {
219
const showInlineValues = getConfiguration('debugpy').get<boolean>('showPythonInlineValues', false);
220
if (!showInlineValues) {
221
registerInlineValuesProviderDisposable.dispose();
0 commit comments