diff --git a/pomodoroprompt.py b/pomodoroprompt.py index 0e4575c..7cb3456 100644 --- a/pomodoroprompt.py +++ b/pomodoroprompt.py @@ -34,7 +34,7 @@ def pomodoro_prompt_plan(whatdid = ''): if GUI: whatnext = prompt_window.prompt(prompt=text, task=whatdid) else: - whatnext = session.prompt(message = text, + whatnext = session.prompt(message = text + '\n', default = whatdid or '', vi_mode = True, completer = words, @@ -51,7 +51,7 @@ def pomodoro_prompt_report(whatnext): if GUI: whatdid = prompt_window.prompt(prompt=text, task=whatnext) else: - whatdid = session.prompt(message = text, + whatdid = session.prompt(message = text + '\n', default = whatnext or '', vi_mode = True, completer = words,