We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9093d8 commit 93d8e77Copy full SHA for 93d8e77
python_files/pythonrc.py
@@ -8,7 +8,6 @@
8
use_shell_integration = sys.version_info < (3, 13)
9
is_wsl = "microsoft-standard-WSL" in platform.release()
10
11
-
12
class REPLHooks:
13
def __init__(self):
14
self.global_exit = None
@@ -77,6 +76,8 @@ def __str__(self):
77
76
78
if sys.platform != "win32" and (not is_wsl) and use_shell_integration:
79
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")
+
+if sys.platform == "darwin":
+ print("Cmd click to launch VS Code Native REPL")
+else:
83
+ print("Ctrl click to launch VS Code Native REPL")
0 commit comments