Add basic autocomplete (fix #95)

This commit is contained in:
20dka
2022-03-15 01:58:26 +01:00
parent 710b15535e
commit 3c08e54471
7 changed files with 66 additions and 3 deletions

View File

@@ -49,6 +49,7 @@ private:
{ "list", [this](const auto& a, const auto& b) { Command_List(a, b); } },
{ "status", [this](const auto& a, const auto& b) { Command_Status(a, b); } },
{ "settings", [this](const auto& a, const auto& b) { Command_Settings(a, b); } },
{ "say", [this](const auto& a, const auto& b) { Command_Say(""); } }, // shouldn't actually be called
};
Commandline mCommandline;