Skip to content

Commit 8d56782

Browse files
remove hardcoded show source key
1 parent f208cba commit 8d56782

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bpython/curtsiesfrontend/repl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ def process_event(self, e):
366366
self.request_paint_to_clear_screen = True
367367
elif e in key_dispatch[self.config.last_output_key]: #TODO Not Implemented
368368
pass
369-
elif e in ('\x1f',) + key_dispatch[self.config.show_source_key]:
369+
elif e in key_dispatch[self.config.show_source_key]:
370370
source = self.get_source_of_current_name()
371371
if source is None:
372372
self.status_bar.message(_('Cannot show source.'))

0 commit comments

Comments
 (0)