|
|
@ -433,6 +433,11 @@ static bool try_autocomplete(color_ostream &con, const std::string &first, std::
|
|
|
|
{
|
|
|
|
{
|
|
|
|
std::vector<std::string> possible;
|
|
|
|
std::vector<std::string> possible;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Check for possible built in commands to autocomplete first
|
|
|
|
|
|
|
|
for (auto iter = built_in_commands.begin(); iter != built_in_commands.end(); ++iter)
|
|
|
|
|
|
|
|
if (iter->substr(0, first.size()) == first)
|
|
|
|
|
|
|
|
possible.push_back(*iter);
|
|
|
|
|
|
|
|
|
|
|
|
auto plug_mgr = Core::getInstance().getPluginManager();
|
|
|
|
auto plug_mgr = Core::getInstance().getPluginManager();
|
|
|
|
for (auto it = plug_mgr->begin(); it != plug_mgr->end(); ++it)
|
|
|
|
for (auto it = plug_mgr->begin(); it != plug_mgr->end(); ++it)
|
|
|
|
{
|
|
|
|
{
|
|
|
@ -612,28 +617,12 @@ static std::string sc_event_name (state_change_event id) {
|
|
|
|
string getBuiltinCommand(std::string cmd)
|
|
|
|
string getBuiltinCommand(std::string cmd)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
std::string builtin = "";
|
|
|
|
std::string builtin = "";
|
|
|
|
if (cmd == "ls" ||
|
|
|
|
|
|
|
|
cmd == "help" ||
|
|
|
|
// Check our list of builtin commands from the header
|
|
|
|
cmd == "type" ||
|
|
|
|
if (built_in_commands.count(cmd))
|
|
|
|
cmd == "load" ||
|
|
|
|
|
|
|
|
cmd == "unload" ||
|
|
|
|
|
|
|
|
cmd == "reload" ||
|
|
|
|
|
|
|
|
cmd == "enable" ||
|
|
|
|
|
|
|
|
cmd == "disable" ||
|
|
|
|
|
|
|
|
cmd == "plug" ||
|
|
|
|
|
|
|
|
cmd == "keybinding" ||
|
|
|
|
|
|
|
|
cmd == "alias" ||
|
|
|
|
|
|
|
|
cmd == "fpause" ||
|
|
|
|
|
|
|
|
cmd == "cls" ||
|
|
|
|
|
|
|
|
cmd == "die" ||
|
|
|
|
|
|
|
|
cmd == "kill-lua" ||
|
|
|
|
|
|
|
|
cmd == "script" ||
|
|
|
|
|
|
|
|
cmd == "hide" ||
|
|
|
|
|
|
|
|
cmd == "show" ||
|
|
|
|
|
|
|
|
cmd == "sc-script"
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
builtin = cmd;
|
|
|
|
builtin = cmd;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Check for some common aliases for built in commands
|
|
|
|
else if (cmd == "?" || cmd == "man")
|
|
|
|
else if (cmd == "?" || cmd == "man")
|
|
|
|
builtin = "help";
|
|
|
|
builtin = "help";
|
|
|
|
|
|
|
|
|
|
|
|