Add more Config Vars to Project Load Exclusions (#911)

This commit is contained in:
Florian Märkl 2021-03-27 10:31:58 +01:00
parent 2c763d31b6
commit a6deede8e2

View file

@ -40,8 +40,29 @@ RZ_API void rz_serialize_core_save(RZ_NONNULL Sdb *db, RZ_NONNULL RzCore *core,
}
static const char *const config_exclude[] = {
"scr.interactive", // especially relevant for Cutter since it needs this to be false
"dir.home",
"dir.libs",
"dir.magic",
"dir.plugins",
"dir.prefix",
"dir.projects",
"dir.source",
"dir.tmp",
"dir.types",
"dir.zigns",
"http.root",
"pdb.symstore",
"scr.color",
"scr.color.args",
"scr.color.bytes",
"scr.color.grep",
"scr.color.ops",
"scr.color.pipe",
"scr.interactive", // especially relevant for Cutter since it needs this to be false
"scr.rainbow",
"scr.utf8",
"scr.utf8.curvy",
"ghidra.sleighhome", // also important for Cutter
NULL
};