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 975b381 commit 01d3993Copy full SHA for 01d3993
bpython/curtsiesfrontend/manual_readline.py
@@ -74,7 +74,7 @@ def backspace(cursor_offset, line):
74
return (cursor_offset - 1,
75
line[:cursor_offset - 1] + line[cursor_offset:])
76
77
-@on('<Ctrl-o>')
+@on('<Ctrl-u>')
78
def delete_from_cursor_back(cursor_offset, line):
79
return 0, line[cursor_offset:]
80
0 commit comments