We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 092de04 commit 6e5633dCopy full SHA for 6e5633d
bpython/scrollfrontend/interaction.py
@@ -61,7 +61,7 @@ def process_event(self, e):
61
else:
62
self.response_queue.put(False)
63
self.escape()
64
- elif e == "\x1b":
+ elif e == ['\x1b', '\t']:
65
66
67
else: # add normal character
bpython/scrollfrontend/repl.py
@@ -44,8 +44,6 @@
44
#TODO prettier completion box!
45
#TODO working raw_input
46
47
-logging.basicConfig(level=logging.DEBUG, filename='repl.log', datefmt='%M:%S')
48
-
49
from bpython.keys import cli_key_dispatch as key_dispatch
50
51
class FakeStdin(object):
0 commit comments