Skip to content

Commit a6097ae

Browse files
fix typo in keybind
1 parent 01d3993 commit a6097ae

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
@@ -38,7 +38,7 @@ def end_of_line(cursor_offset, line):
3838
return len(line), line
3939

4040
@on('<Esc-f>')
41-
@on('<Ctrl-RIGHT')
41+
@on('<Ctrl-RIGHT>')
4242
def forward_word(cursor_offset, line):
4343
patt = r"\S\s"
4444
match = re.search(patt, line[cursor_offset:]+' ')

0 commit comments

Comments
 (0)