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
d384173b
Commit
d384173b
authored
May 04, 2015
by
Bram Schoenmakers
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Introduce completion of contexts and projects.
parent
f8fd6ef3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
topydo/cli/Prompt.py
topydo/cli/Prompt.py
+11
-1
No files found.
topydo/cli/Prompt.py
100755 → 100644
View file @
d384173b
...
...
@@ -20,6 +20,7 @@ import sys
from
topydo.cli.CLIApplicationBase
import
CLIApplicationBase
,
error
from
prompt_toolkit.contrib.shortcuts
import
get_input
from
prompt_toolkit.contrib.completers
import
WordCompleter
from
topydo.lib.Config
import
config
,
ConfigError
...
...
@@ -46,6 +47,15 @@ class PromptApplication(CLIApplicationBase):
def
__init__
(
self
):
super
(
PromptApplication
,
self
).
__init__
()
def
completer
(
self
):
""" Returns a completer instance with projects and contexts. """
projects
=
[
"+"
+
project
for
project
in
self
.
todolist
.
projects
()]
contexts
=
[
"@"
+
context
for
context
in
self
.
todolist
.
contexts
()]
complete_list
=
projects
+
contexts
return
WordCompleter
(
complete_list
)
def
run
(
self
):
""" Main entry function. """
args
=
self
.
_process_flags
()
...
...
@@ -55,7 +65,7 @@ class PromptApplication(CLIApplicationBase):
while
True
:
try
:
user_input
=
get_input
(
'topydo> '
).
split
()
user_input
=
get_input
(
'topydo> '
,
completer
=
self
.
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