diff options
author | bloodstalker <thabogre@gmail.com> | 2017-05-15 15:47:49 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2017-05-15 15:47:49 +0000 |
commit | 387d606d35107421a617b6644520ca09cbfbecfe (patch) | |
tree | ce93ce6a761940f294218f8aa986448b0fe35255 /bruiser | |
parent | fixed the color "seeping" problem (diff) | |
download | mutator-387d606d35107421a617b6644520ca09cbfbecfe.tar.gz mutator-387d606d35107421a617b6644520ca09cbfbecfe.zip |
added the shell commands to the list
Diffstat (limited to 'bruiser')
-rw-r--r-- | bruiser/bruiser-extra.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/bruiser/bruiser-extra.h b/bruiser/bruiser-extra.h index b76b2e8..2f5de84 100644 --- a/bruiser/bruiser-extra.h +++ b/bruiser/bruiser-extra.h @@ -74,16 +74,40 @@ std::vector<std::string> BRUISR_COMMANDS = "quit", "exit", "list", + "list vars", + "list funcs", + "list structs", + "list classes", + "list unions", + "list records", "history", "shell", "version", "clear", "hijack", + "hijack main", "m0" }; std::vector<std::string> LUA_FUNCS = { + "help", + "quit", + "exit", + "list", + "list vars", + "list funcs", + "list structs", + "list classes", + "list unions", + "list records", + "history", + "shell", + "version", + "clear", + "hijack", + "hijack main", + "m0", "_G", "_VERSION", "assert", |