Skip to content

Commit 435d33b

Browse files
Fix rendering of control-shift-6 (or control-^). Render as '^^'.
1 parent 04bb8bc commit 435d33b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/prompt_toolkit/layout/screen.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ class Char:
6161
"\x1b": "^[", # Escape
6262
"\x1c": "^\\",
6363
"\x1d": "^]",
64+
"\x1e": "^^",
6465
"\x1f": "^_",
6566
"\x7f": "^?", # ASCII Delete (backspace).
6667
# Special characters. All visualized like Vim does.

0 commit comments

Comments
 (0)