Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
T
topydo
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
topydo
Commits
e6ae21c1
Commit
e6ae21c1
authored
May 18, 2015
by
Jacek Sowiński
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Enable history in prompt-mode
parent
de1a805d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
topydo/cli/Prompt.py
topydo/cli/Prompt.py
+3
-1
No files found.
topydo/cli/Prompt.py
View file @
e6ae21c1
...
...
@@ -21,6 +21,7 @@ import sys
from
topydo.cli.CLIApplicationBase
import
CLIApplicationBase
,
error
from
topydo.cli.TopydoCompleter
import
TopydoCompleter
from
prompt_toolkit.shortcuts
import
get_input
from
prompt_toolkit.history
import
History
from
topydo.lib.Config
import
config
,
ConfigError
...
...
@@ -55,10 +56,11 @@ class PromptApplication(CLIApplicationBase):
self
.
todolist
=
TodoList
.
TodoList
(
self
.
todofile
.
read
())
completer
=
TopydoCompleter
(
self
.
todolist
)
history
=
History
()
while
True
:
try
:
user_input
=
get_input
(
u'topydo> '
,
completer
=
completer
).
split
()
user_input
=
get_input
(
u'topydo> '
,
history
=
history
,
completer
=
completer
).
split
()
except
(
EOFError
,
KeyboardInterrupt
):
sys
.
exit
(
0
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment