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 7eaef53 commit e3dfb4fCopy full SHA for e3dfb4f
bpython/curtsiesfrontend/repl.py
@@ -594,12 +594,11 @@ def process_key_event(self, e):
594
if self.stdin.has_focus:
595
return self.stdin.process_event(e)
596
597
- if (e in ("<RIGHT>", '<Ctrl-f>') and
+ if (e in ("<RIGHT>", '<Ctrl-f>', '<Ctrl-e>') and
598
self.config.curtsies_right_arrow_completion and
599
self.cursor_offset == len(self.current_line)):
600
self.current_line += self.current_suggestion
601
self.cursor_offset = len(self.current_line)
602
-
603
elif e in ("<UP>",) + key_dispatch[self.config.up_one_line_key]:
604
self.up_one_line()
605
elif e in ("<DOWN>",) + key_dispatch[self.config.down_one_line_key]:
0 commit comments