diff --git a/package.json b/package.json index df393d7934d2..2109483b817f 100644 --- a/package.json +++ b/package.json @@ -306,9 +306,9 @@ }, { "category": "Python", - "command": "python.execInNewTerminal", + "command": "python.execInDedicatedTerminal", "icon": "$(play)", - "title": "%python.command.python.execInNewTerminal.title%" + "title": "%python.command.python.execInDedicatedTerminal.title%" }, { "category": "Python", @@ -1634,9 +1634,9 @@ }, { "category": "Python", - "command": "python.execInNewTerminal", + "command": "python.execInDedicatedTerminal", "icon": "$(play)", - "title": "%python.command.python.execInNewTerminal.title%", + "title": "%python.command.python.execInDedicatedTerminal.title%", "when": "false && editorLangId == python" }, { @@ -1798,9 +1798,9 @@ "when": "resourceLangId == python && !isInDiffEditor && !virtualWorkspace && shellExecutionSupported" }, { - "command": "python.execInNewTerminal", + "command": "python.execInDedicatedTerminal", "group": "navigation@0", - "title": "%python.command.python.execInNewTerminal.title%", + "title": "%python.command.python.execInDedicatedTerminal.title%", "when": "resourceLangId == python && !isInDiffEditor && !virtualWorkspace && shellExecutionSupported" }, { diff --git a/package.nls.json b/package.nls.json index e8e0bb803d10..18254fd05468 100644 --- a/package.nls.json +++ b/package.nls.json @@ -7,7 +7,7 @@ "python.command.python.execInTerminal.title": "Run Python File in Terminal", "python.command.python.debugInTerminal.title": "Debug Python File", "python.command.python.execInTerminalIcon.title": "Run Python File", - "python.command.python.execInNewTerminal.title": "Run Python File in Separate Terminal", + "python.command.python.execInDedicatedTerminal.title": "Run Python File in Dedicated Terminal", "python.command.python.setInterpreter.title": "Select Interpreter", "python.command.python.clearWorkspaceInterpreter.title": "Clear Workspace Interpreter Setting", "python.command.python.viewOutput.title": "Show Output", diff --git a/src/client/common/constants.ts b/src/client/common/constants.ts index aae792ec2e39..bea0ef9e235c 100644 --- a/src/client/common/constants.ts +++ b/src/client/common/constants.ts @@ -44,7 +44,7 @@ export namespace Commands { export const Enable_SourceMap_Support = 'python.enableSourceMapSupport'; export const Exec_In_Terminal = 'python.execInTerminal'; export const Exec_In_Terminal_Icon = 'python.execInTerminal-icon'; - export const Exec_In_Separate_Terminal = 'python.execInNewTerminal'; + export const Exec_In_Separate_Terminal = 'python.execInDedicatedTerminal'; export const Exec_Selection_In_Django_Shell = 'python.execSelectionInDjangoShell'; export const Exec_Selection_In_Terminal = 'python.execSelectionInTerminal'; export const GetSelectedInterpreterPath = 'python.interpreterPath';