Skip to content

Commit 3d8327f

Browse files
fix autocompletion not updating after rewind
--HG-- branch : scroll-frontend
1 parent 9e8cf1c commit 3d8327f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

bpython/scrollfrontend/repl.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -322,6 +322,7 @@ def process_event(self, e):
322322
self.on_tab(back=True)
323323
elif e in key_dispatch[self.config.undo_key]: #ctrl-r for undo
324324
self.undo()
325+
self.update_completion()
325326
elif e in key_dispatch[self.config.save_key]: # ctrl-s for save
326327
t = threading.Thread(target=self.write2file)
327328
t.daemon = True

0 commit comments

Comments
 (0)