Skip to content

Commit 0835c7e

Browse files
authored
Rename REPL to Terminal REPL (#23613)
Resolves: #23524 Renaming existing "Start REPL" command palette option into "Start Terminal REPL" as we discussed. /cc @luabud @cwebster-99
1 parent bc2f5e3 commit 0835c7e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ The Python extension will automatically install the following extensions by defa
1616

1717
These extensions are optional dependencies, meaning the Python extension will remain fully functional if they fail to be installed. Any or all of these extensions can be [disabled](https://code.visualstudio.com/docs/editor/extension-marketplace#_disable-an-extension) or [uninstalled](https://code.visualstudio.com/docs/editor/extension-marketplace#_uninstall-an-extension) at the expense of some features. Extensions installed through the marketplace are subject to the [Marketplace Terms of Use](https://cdn.vsassets.io/v/M146_20190123.39/_content/Microsoft-Visual-Studio-Marketplace-Terms-of-Use.pdf).
1818

19-
## Extensibility
19+
## Extensibility
2020

21-
The Python extension provides pluggable access points for extensions that extend various feature areas to further improve your Python development experience. These extensions are all optional and depend on your project configuration and preferences.
21+
The Python extension provides pluggable access points for extensions that extend various feature areas to further improve your Python development experience. These extensions are all optional and depend on your project configuration and preferences.
2222

2323
- [Python formatters](https://code.visualstudio.com/docs/python/formatting#_choose-a-formatter)
2424
- [Python linters](https://code.visualstudio.com/docs/python/linting#_choose-a-linter)
2525

26-
If you encounter issues with any of the listed extensions, please file an issue in its corresponding repo.
26+
If you encounter issues with any of the listed extensions, please file an issue in its corresponding repo.
2727

2828
## Quick start
2929

@@ -70,7 +70,7 @@ Open the Command Palette (Command+Shift+P on macOS and Ctrl+Shift+P on Windows/L
7070
| Command | Description |
7171
| ------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- |
7272
| `Python: Select Interpreter` | Switch between Python interpreters, versions, and environments. |
73-
| `Python: Start REPL` | Start an interactive Python REPL using the selected interpreter in the VS Code terminal. |
73+
| `Python: Start Terminal REPL` | Start an interactive Python REPL using the selected interpreter in the VS Code terminal. |
7474
| `Python: Run Python File in Terminal` | Runs the active Python file in the VS Code terminal. You can also run a Python file by right-clicking on the file and selecting `Run Python File in Terminal`. |
7575
| `Python: Configure Tests` | Select a test framework and configure it to display the Test Explorer. |
7676

package.nls.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"python.command.python.startREPL.title": "Start REPL",
2+
"python.command.python.startREPL.title": "Start Terminal REPL",
33
"python.command.python.createEnvironment.title": "Create Environment...",
44
"python.command.python.createNewFile.title": "New Python File",
55
"python.command.python.createTerminal.title": "Create Terminal",

0 commit comments

Comments
 (0)