mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-30 04:23:24 +02:00
TW-1405
- TW-1405 Add command _zshattributes (thanks to Roman Inflianskas).
This commit is contained in:
parent
a77e50b441
commit
7a85554924
12 changed files with 118 additions and 1 deletions
|
@ -38,6 +38,7 @@
|
|||
#include <CmdAliases.h>
|
||||
#include <CmdAnnotate.h>
|
||||
#include <CmdAppend.h>
|
||||
#include <CmdAttributes.h>
|
||||
#include <CmdBurndown.h>
|
||||
#include <CmdCalc.h>
|
||||
#include <CmdCalendar.h>
|
||||
|
@ -155,6 +156,7 @@ void Command::factory (std::map <std::string, Command*>& all)
|
|||
c = new CmdUrgency (); all[c->keyword ()] = c;
|
||||
c = new CmdUUIDs (); all[c->keyword ()] = c;
|
||||
c = new CmdVersion (); all[c->keyword ()] = c;
|
||||
c = new CmdZshAttributes (); 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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue