Skip to content

Commit

Permalink
fix typo and migrate from bad setting name (#16106)
Browse files Browse the repository at this point in the history
  • Loading branch information
amunger authored Oct 4, 2024
1 parent c8287cd commit 5ec3365
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -1639,7 +1639,7 @@
"description": "%jupyter.configuration.jupyter.codeLenses.description%",
"scope": "resource"
},
"jupyter.interactiveWindow.codeLes.debugCommands": {
"jupyter.interactiveWindow.codeLens.debugCommands": {
"type": "string",
"default": "jupyter.debugcontinue, jupyter.debugstop, jupyter.debugstepover",
"description": "%jupyter.configuration.jupyter.debugCodeLenses.description%",
Expand Down
3 changes: 2 additions & 1 deletion src/platform/common/configMigration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ export class ConfigMigration {
enableCellCodeLens: 'interactiveWindow.codeLens.enable',
addGotoCodeLenses: 'interactiveWindow.codeLens.enableGotoCell',
codeLenses: 'interactiveWindow.codeLens.commands',
debugCodeLenses: 'interactiveWindow.codeLes.debugCommands',
debugCodeLenses: 'interactiveWindow.codeLens.debugCommands',
'interactiveWindow.codeLes.debugCommands': 'interactiveWindow.codeLens.debugCommands',

codeRegularExpression: 'interactiveWindow.cellMarker.codeRegex',
markdownRegularExpression: 'interactiveWindow.cellMarker.markdownRegex',
Expand Down

0 comments on commit 5ec3365

Please sign in to comment.