From e8f7adc3559b893ff33110e1842478c46ef29059 Mon Sep 17 00:00:00 2001 From: "Chris (wolcen) Thompson" Date: Tue, 19 Nov 2024 13:31:34 -0500 Subject: [PATCH] Seems there are problems with prompt on the same line (sometimes) May well have to do with changes to my environment, but I'm not dealing w/that now --- pomodoroprompt.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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,