mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-29 17:07:19 +02:00
Enhancement - _commands
- Added undocumented _commands command to support completion scripts.
This commit is contained in:
parent
a6e9e6cdfb
commit
f633e42597
5 changed files with 28 additions and 0 deletions
|
@ -198,6 +198,7 @@ std::string Context::dispatch ()
|
|||
else if (cmd.command == "undo") { handleUndo (); }
|
||||
else if (cmd.command == "_projects") { out = handleCompletionProjects (); }
|
||||
else if (cmd.command == "_tags") { out = handleCompletionTags (); }
|
||||
else if (cmd.command == "_commands") { out = handleCompletionCommands (); }
|
||||
else if (cmd.command == "" &&
|
||||
sequence.size ()) { out = handleModify (); }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue