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
This commit is contained in:
parent
f908389c40
commit
e8f7adc355
1 changed files with 2 additions and 2 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue