Skip to content

Commit 5ec3365

Browse files
authored
fix typo and migrate from bad setting name (#16106)
1 parent c8287cd commit 5ec3365

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1639,7 +1639,7 @@
16391639
"description": "%jupyter.configuration.jupyter.codeLenses.description%",
16401640
"scope": "resource"
16411641
},
1642-
"jupyter.interactiveWindow.codeLes.debugCommands": {
1642+
"jupyter.interactiveWindow.codeLens.debugCommands": {
16431643
"type": "string",
16441644
"default": "jupyter.debugcontinue, jupyter.debugstop, jupyter.debugstepover",
16451645
"description": "%jupyter.configuration.jupyter.debugCodeLenses.description%",

src/platform/common/configMigration.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ export class ConfigMigration {
2525
enableCellCodeLens: 'interactiveWindow.codeLens.enable',
2626
addGotoCodeLenses: 'interactiveWindow.codeLens.enableGotoCell',
2727
codeLenses: 'interactiveWindow.codeLens.commands',
28-
debugCodeLenses: 'interactiveWindow.codeLes.debugCommands',
28+
debugCodeLenses: 'interactiveWindow.codeLens.debugCommands',
29+
'interactiveWindow.codeLes.debugCommands': 'interactiveWindow.codeLens.debugCommands',
2930

3031
codeRegularExpression: 'interactiveWindow.cellMarker.codeRegex',
3132
markdownRegularExpression: 'interactiveWindow.cellMarker.markdownRegex',

0 commit comments

Comments
 (0)