mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-29 17:07:19 +02:00
Commands - _commands, _zshcommands
- Migrated handleCompletionCommand and handleZshCompletionCommands to CmdCommands.
This commit is contained in:
parent
330b148ca9
commit
33d13ddb1d
9 changed files with 177 additions and 217 deletions
|
@ -284,11 +284,9 @@ int Context::dispatch (std::string &out)
|
|||
else if (cmd.command == "count") { rc = handleCount (out); }
|
||||
else if (cmd.command == "ids") { rc = handleIds (out); }
|
||||
else if (cmd.command == "_projects") { rc = handleCompletionProjects (out); }
|
||||
else if (cmd.command == "_commands") { rc = handleCompletionCommands (out); }
|
||||
else if (cmd.command == "_ids") { rc = handleCompletionIDs (out); }
|
||||
else if (cmd.command == "_config") { rc = handleCompletionConfig (out); }
|
||||
else if (cmd.command == "_query") { rc = handleQuery (out); }
|
||||
else if (cmd.command == "_zshcommands") { rc = handleZshCompletionCommands (out); }
|
||||
else if (cmd.command == "_zshids") { rc = handleZshCompletionIDs (out); }
|
||||
else if (cmd.command == "" &&
|
||||
sequence.size ()) { rc = handleModify (out); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue