


This mod adds to the game ability to quickly print terminal commands. Also it allows to look through commands history.
Tab - autocomplete (click again to print other results), use Esc to exit terminal
Up Arrow - previous command
Down Arrow - next command
Keybinds are editable in the plugin configuration file.
Any bug reports or feature requests are accepted in the Issues section of the github page:
https://github.com/IlyaChichkov/LethalAutocompleteMod/issues
By default plugin sets weights for all available commands to value 10. The higher the value, the higher the priority of issuing the command. Release archive contains preset of weights for autocomplete, so you don't have to set all by yourself.
Commands that are in commands blacklist or with weight equal to 0 won't be suggested for autocomplete.
{
"Words": [
{
"Word": "Buy",
"Weight": 10
},
{
"Word": "ProFlashlight",
"Weight": 10
},
{
"Word": "Confirm",
"Weight": 10
}
]
}
History blacklist allows filter commands that you don't want to save in history.
{
"CommandsBlacklist": ["IgnoreMe"],
"HistoryBlacklist": ["DontSave"]
}