Commit ed78206d authored by Bram Schoenmakers's avatar Bram Schoenmakers

Do not trigger auto-completion while typing, only when Tab is pressed.

parent 2dab3dbb
......@@ -91,7 +91,8 @@ class PromptApplication(CLIApplicationBase):
try:
user_input = get_input(u'topydo> ', history=history,
completer=self.completer).split()
completer=self.completer,
complete_while_typing=False).split()
except (EOFError, KeyboardInterrupt):
sys.exit(0)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment