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
6cbeaf5d
Commit
6cbeaf5d
authored
May 18, 2015
by
Bram Schoenmakers
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #24 from mruwek/prompt-enable-history
Enable history in prompt-mode
parents
de1a805d
e6ae21c1
Changes
1
Show 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 @
6cbeaf5d
...
...
@@ -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