Skip to content

Commit 01d3993

Browse files
fix bad keybind
1 parent 975b381 commit 01d3993

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bpython/curtsiesfrontend/manual_readline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def backspace(cursor_offset, line):
7474
return (cursor_offset - 1,
7575
line[:cursor_offset - 1] + line[cursor_offset:])
7676

77-
@on('<Ctrl-o>')
77+
@on('<Ctrl-u>')
7878
def delete_from_cursor_back(cursor_offset, line):
7979
return 0, line[cursor_offset:]
8080

0 commit comments

Comments
 (0)