- Migrated the _version command from handleCompletionVersion to
  CmdVersion.
This commit is contained in:
Paul Beckingham 2011-05-24 20:57:24 -04:00
parent fc77e04b54
commit 54d98a6b2d
8 changed files with 40 additions and 29 deletions

View file

@ -294,7 +294,6 @@ int Context::dispatch (std::string &out)
else if (cmd.command == "_commands") { rc = handleCompletionCommands (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 == "_urgency") { rc = handleUrgency (out); }
else if (cmd.command == "_query") { rc = handleQuery (out); }
else if (cmd.command == "_zshcommands") { rc = handleZshCompletionCommands (out); }