Skip to content

Commit 93d8e77

Browse files
committed
change wording
1 parent f9093d8 commit 93d8e77

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

python_files/pythonrc.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
use_shell_integration = sys.version_info < (3, 13)
99
is_wsl = "microsoft-standard-WSL" in platform.release()
1010

11-
1211
class REPLHooks:
1312
def __init__(self):
1413
self.global_exit = None
@@ -77,6 +76,8 @@ def __str__(self):
7776

7877
if sys.platform != "win32" and (not is_wsl) and use_shell_integration:
7978
sys.ps1 = PS1()
80-
# TODO: Word this better - get feedback
81-
# TODO: add ctrl/cmd depending on OS
82-
print("Click to launch VS Code Native REPL")
79+
80+
if sys.platform == "darwin":
81+
print("Cmd click to launch VS Code Native REPL")
82+
else:
83+
print("Ctrl click to launch VS Code Native REPL")

0 commit comments

Comments
 (0)