feat: Allow setting language through the command line

This commit is contained in:
WerWolv
2024-02-01 10:58:45 +01:00
parent 26eec66f89
commit 7709f4e307
7 changed files with 21 additions and 5 deletions

View File

@@ -60,6 +60,7 @@ IMHEX_PLUGIN_SUBCOMMANDS() {
{ "help", "Print help about this command", hex::plugin::builtin::handleHelpCommand },
{ "version", "Print ImHex version", hex::plugin::builtin::handleVersionCommand },
{ "plugins", "Lists all plugins that have been installed", hex::plugin::builtin::handlePluginsCommand },
{ "language", "Changes the language ImHex uses", hex::plugin::builtin::handleLanguageCommand },
{ "open", "Open files passed as argument. [default]", hex::plugin::builtin::handleOpenCommand },
@@ -70,7 +71,7 @@ IMHEX_PLUGIN_SUBCOMMANDS() {
{ "magic", "Identify file types", hex::plugin::builtin::handleMagicCommand },
{ "pl", "Interact with the pattern language", hex::plugin::builtin::handlePatternLanguageCommand },
{ "hexdump", "Generate a hex dump of the provided file", hex::plugin::builtin::handleHexdumpCommand },
{ "hexdump", "Demangle a mangled symbol", hex::plugin::builtin::handleDemangleCommand },
{ "demangle", "Demangle a mangled symbol", hex::plugin::builtin::handleDemangleCommand },
};
IMHEX_PLUGIN_SETUP("Built-in", "WerWolv", "Default ImHex functionality") {