mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Enhancement
- Similar subcommands for 'uuids' as there is for 'ids' ('_uuids' and '_zshuuids'). - Extends the scope and the precision of the unit tests for ids. - Corresponding documentation in the man pages.
This commit is contained in:
parent
82a4607ec6
commit
fe954a6acc
7 changed files with 110 additions and 6 deletions
|
@ -114,6 +114,7 @@ void Command::factory (std::map <std::string, Command*>& all)
|
|||
c = new CmdCompletionCommands (); all[c->keyword ()] = c;
|
||||
c = new CmdCompletionConfig (); all[c->keyword ()] = c;
|
||||
c = new CmdCompletionIds (); all[c->keyword ()] = c;
|
||||
c = new CmdCompletionUuids (); all[c->keyword ()] = c;
|
||||
c = new CmdCompletionProjects (); all[c->keyword ()] = c;
|
||||
c = new CmdCompletionTags (); all[c->keyword ()] = c;
|
||||
c = new CmdCompletionVersion (); all[c->keyword ()] = c;
|
||||
|
@ -162,6 +163,7 @@ void Command::factory (std::map <std::string, Command*>& all)
|
|||
c = new CmdVersion (); all[c->keyword ()] = c;
|
||||
c = new CmdZshCommands (); all[c->keyword ()] = c;
|
||||
c = new CmdZshCompletionIds (); all[c->keyword ()] = c;
|
||||
c = new CmdZshCompletionUuids (); all[c->keyword ()] = c;
|
||||
|
||||
// Instantiate a command object for each custom report.
|
||||
std::vector <std::string> variables;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue