Skip to content

Commit

Permalink
change wording
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonykim1 committed Jan 22, 2025
1 parent f9093d8 commit 93d8e77
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions python_files/pythonrc.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
use_shell_integration = sys.version_info < (3, 13)
is_wsl = "microsoft-standard-WSL" in platform.release()


class REPLHooks:
def __init__(self):
self.global_exit = None
Expand Down Expand Up @@ -77,6 +76,8 @@ def __str__(self):

if sys.platform != "win32" and (not is_wsl) and use_shell_integration:
sys.ps1 = PS1()
# TODO: Word this better - get feedback
# TODO: add ctrl/cmd depending on OS
print("Click to launch VS Code Native REPL")

if sys.platform == "darwin":
print("Cmd click to launch VS Code Native REPL")
else:
print("Ctrl click to launch VS Code Native REPL")

0 comments on commit 93d8e77

Please sign in to comment.