Hello. I'm new to cb and interested to change a few settings from a script.
AFAIK, GetConfigManager().Read() and GetConfigManager().Write() allows to change cb settings loaded from default.conf XML.
Unfortunately, i can't find enough documentation in help, sources and this forum search

I have tried the code from one of the wizards, changing my startup.script to the following:
local n = GetConfigManager().Read(_T("/wx_project_wizard/dll"), 47);
local s = _T( "val: " ) + n;
Log( s );
that work fine, displaying value of '1' (not a default 47 i have specified).
But i can't find a way to read values outside of 'wx_project_wizard' XML branch

. If i change code to the following:
local n = GetConfigManager().Read(_T("/astyle/STYLE"), 47);
local s = _T( "val: " ) + n;
Log( s );
it will display 47, that means that value is not read

.
How i can write a script that will read and write any value from cb settings? For example, i'm interested in /CodeBlocksConfig/editor/colour_sets/default/cc/editor/keywords/SET1