From a6deede8e25f218848a027be57024135b189bb9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=A4rkl?= Date: Sat, 27 Mar 2021 10:31:58 +0100 Subject: [PATCH] Add more Config Vars to Project Load Exclusions (#911) --- librz/core/serialize_core.c | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/librz/core/serialize_core.c b/librz/core/serialize_core.c index 30ed7b3aa6..75f228307a 100644 --- a/librz/core/serialize_core.c +++ b/librz/core/serialize_core.c @@ -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 };