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 9cb5ae7 commit ebe4530Copy full SHA for ebe4530
python_files/pythonrc.py
@@ -52,7 +52,9 @@ def __str__(self):
52
result = ""
53
# For non-windows allow recent_command history.
54
if sys.platform != "win32":
55
- result = "{command_executed}{command_line}{command_finished}{prompt_started}{prompt}{command_start}".format(
+ result = "{soh}{command_executed}{command_line}{command_finished}{prompt_started}{stx}{prompt}{soh}{command_start}{stx}".format(
56
+ soh="\001",
57
+ stx="\002",
58
command_executed="\x1b]633;C\x07",
59
command_line="\x1b]633;E;" + str(get_last_command()) + "\x07",
60
command_finished="\x1b]633;D;" + str(exit_code) + "\x07",
0 commit comments