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:
|
if GUI:
|
||||||
whatnext = prompt_window.prompt(prompt=text, task=whatdid)
|
whatnext = prompt_window.prompt(prompt=text, task=whatdid)
|
||||||
else:
|
else:
|
||||||
whatnext = session.prompt(message = text,
|
whatnext = session.prompt(message = text + '\n',
|
||||||
default = whatdid or '',
|
default = whatdid or '',
|
||||||
vi_mode = True,
|
vi_mode = True,
|
||||||
completer = words,
|
completer = words,
|
||||||
|
@ -51,7 +51,7 @@ def pomodoro_prompt_report(whatnext):
|
||||||
if GUI:
|
if GUI:
|
||||||
whatdid = prompt_window.prompt(prompt=text, task=whatnext)
|
whatdid = prompt_window.prompt(prompt=text, task=whatnext)
|
||||||
else:
|
else:
|
||||||
whatdid = session.prompt(message = text,
|
whatdid = session.prompt(message = text + '\n',
|
||||||
default = whatnext or '',
|
default = whatnext or '',
|
||||||
vi_mode = True,
|
vi_mode = True,
|
||||||
completer = words,
|
completer = words,
|
||||||
|
|
Loading…
Reference in a new issue