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:
Louis-Claude Canon 2012-05-22 17:01:04 +02:00 committed by Paul Beckingham
parent 82a4607ec6
commit fe954a6acc
7 changed files with 110 additions and 6 deletions

View file

@ -60,5 +60,19 @@ public:
int execute (std::string&);
};
class CmdCompletionUuids : public Command
{
public:
CmdCompletionUuids ();
int execute (std::string&);
};
class CmdZshCompletionUuids : public Command
{
public:
CmdZshCompletionUuids ();
int execute (std::string&);
};
#endif
////////////////////////////////////////////////////////////////////////////////