Skip to content

Commit

Permalink
Change name of command to run Python files in separate terminals (mic…
Browse files Browse the repository at this point in the history
  • Loading branch information
Kartik Raj authored May 11, 2023
1 parent 1533818 commit 0c4fa40
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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"
},
{
Expand Down Expand Up @@ -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"
},
{
Expand Down
2 changes: 1 addition & 1 deletion package.nls.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/client/common/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down

0 comments on commit 0c4fa40

Please sign in to comment.