Added _sha1 helper command to quickly identify a

task dev version.
This commit is contained in:
Federico Hernandez
2011-01-15 21:41:28 +01:00
parent ae4e28689d
commit c0c58f9aff
4 changed files with 18 additions and 0 deletions

View File

@@ -269,6 +269,7 @@ int Context::dispatch (std::string &out)
else if (cmd.command == "_ids") { rc = handleCompletionIDs (out); }
else if (cmd.command == "_config") { rc = handleCompletionConfig (out); }
else if (cmd.command == "_version") { rc = handleCompletionVersion (out); }
else if (cmd.command == "_sha1") { rc = handleSha1 (out); }
else if (cmd.command == "_urgency") { rc = handleUrgency (out); }
else if (cmd.command == "_query") { rc = handleQuery (out); }
else if (cmd.command == "_zshcommands") { rc = handleZshCompletionCommands (out); }