forked from DonJayamanne/pythonVSCode
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathpythonrc.py
More file actions
110 lines (86 loc) · 3.76 KB
/
Copy pathpythonrc.py
File metadata and controls
110 lines (86 loc) · 3.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
import platform
import sys
if sys.platform != "win32":
import readline
original_ps1 = ">>> "
is_wsl = "microsoft-standard-WSL" in platform.release()
# NOTE: PYTHONSTARTUP executes this file's code directly inside the user's
# __main__ namespace, so everything defined below actually lives in
# __main__.__dict__. That means PS1.__str__.__globals__ IS the user's
# namespace: if the user later shadows a name we rely on at prompt-render
# time (e.g. `int = 20`, `sys = 1`, `original_ps1 = ...`), a plain global
# lookup would resolve to the user's value instead of ours and raise,
# silently killing the prompt (see #26039). Capture the real objects here,
# before any user code runs, so later reassignment in __main__ can't affect
# us.
_int = int
_str = str
_bool = bool
_sys = sys
_original_ps1 = original_ps1
class REPLHooks:
def __init__(self):
self.global_exit = None
self.failure_flag = False
self.original_excepthook = sys.excepthook
self.original_displayhook = sys.displayhook
sys.excepthook = self.my_excepthook
sys.displayhook = self.my_displayhook
def my_displayhook(self, value):
if value is None:
self.failure_flag = False
self.original_displayhook(value)
def my_excepthook(self, type_, value, traceback):
self.global_exit = value
self.failure_flag = True
self.original_excepthook(type_, value, traceback)
def get_last_command():
# Get the last history item
last_command = ""
if _sys.platform != "win32":
last_command = _readline.get_history_item(_readline.get_current_history_length())
return last_command
# Capture the function object itself, not just the name: `get_last_command`
# is also just a name in __main__, so it could be shadowed the same way.
_get_last_command = get_last_command
_readline = readline if sys.platform != "win32" else None
class PS1:
hooks = REPLHooks()
sys.excepthook = hooks.my_excepthook
sys.displayhook = hooks.my_displayhook
# str will get called for every prompt with exit code to show success/failure
def __str__(self):
exit_code = _int(_bool(self.hooks.failure_flag))
self.hooks.failure_flag = False
# Guide following official VS Code doc for shell integration sequence:
result = ""
# For non-windows allow recent_command history.
if _sys.platform != "win32":
result = "{soh}{command_executed}{command_line}{command_finished}{prompt_started}{stx}{prompt}{soh}{command_start}{stx}".format(
soh="\001",
stx="\002",
command_executed="\x1b]633;C\x07",
command_line="\x1b]633;E;" + _str(_get_last_command()) + "\x07",
command_finished="\x1b]633;D;" + _str(exit_code) + "\x07",
prompt_started="\x1b]633;A\x07",
prompt=_original_ps1,
command_start="\x1b]633;B\x07",
)
else:
result = "{command_finished}{prompt_started}{prompt}{command_start}{command_executed}".format(
command_finished="\x1b]633;D;" + _str(exit_code) + "\x07",
prompt_started="\x1b]633;A\x07",
prompt=_original_ps1,
command_start="\x1b]633;B\x07",
command_executed="\x1b]633;C\x07",
)
# result = f"{chr(27)}]633;D;{exit_code}{chr(7)}{chr(27)}]633;A{chr(7)}{original_ps1}{chr(27)}]633;B{chr(7)}{chr(27)}]633;C{chr(7)}"
return result
def __repr__(self):
return "<Custom PS1 for VS Code Python Shell Integration>"
if sys.platform != "win32" and (not is_wsl):
sys.ps1 = PS1()
if sys.platform == "darwin":
print("Cmd click to launch VS Code Native REPL")
else:
print("Ctrl click to launch VS Code Native REPL")