mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-21 07:43:08 +02:00
zcmdcat: Categorize 'task install'.
This commit is contained in:
parent
53a702d79a
commit
de9a815063
3 changed files with 3 additions and 0 deletions
|
@ -40,6 +40,7 @@ CmdInstall::CmdInstall ()
|
||||||
_description = STRING_CMD_INSTALL_USAGE;
|
_description = STRING_CMD_INSTALL_USAGE;
|
||||||
_read_only = true;
|
_read_only = true;
|
||||||
_displays_id = false;
|
_displays_id = false;
|
||||||
|
_category = Command::Category::UNDOCUMENTED;
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
|
@ -206,6 +206,7 @@ const std::map <Command::Category, std::string> Command::categoryNames =
|
||||||
,{Command::Category::migration, "migration"}
|
,{Command::Category::migration, "migration"}
|
||||||
,{Command::Category::misc, "misc" }
|
,{Command::Category::misc, "misc" }
|
||||||
,{Command::Category::internal, "internal"}
|
,{Command::Category::internal, "internal"}
|
||||||
|
,{Command::Category::UNDOCUMENTED, "undocumented"}
|
||||||
};
|
};
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
|
@ -58,6 +58,7 @@ public:
|
||||||
migration,
|
migration,
|
||||||
misc,
|
misc,
|
||||||
internal,
|
internal,
|
||||||
|
UNDOCUMENTED,
|
||||||
// Whenever you extend this enum, update categoryNames.
|
// Whenever you extend this enum, update categoryNames.
|
||||||
};
|
};
|
||||||
Category _category;
|
Category _category;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue