If I want to add forced_enc, then where I can to find list of them and how to use? GEANY_ENCODING_*
from encodings.h or strings from encodings.c? (I didn't find examples.)
Where I can find files for build deb-files from master-branch (or for nightly builds)? Or it's not public? I didn't find :) (Nofiles geany_*.debian.tar.xz
& geany-plugins_*.debian.tar.xz
for 1.32 and I couldn't do it myself for Utils and Workbench.)
P.S. geany.reloadconf
(like geany.reload_configuration()
from GeanyPy) may be of interest...
diff --git a/geanylua/glspi_app.c b/geanylua/glspi_app.c
index ed82d5eb..b59d6b9a 100644
--- a/geanylua/glspi_app.c
+++ b/geanylua/glspi_app.c
@@ -604,6 +604,12 @@ static gint glspi_keygrab(lua_State* L)
}
+static gint glspi_reloadconf(lua_State* L)
+{
+ main_reload_configuration();
+ return 0;
+}
+
static const struct luaL_reg glspi_app_funcs[] = {
{"pluginver", glspi_pluginver},
@@ -620,6 +626,7 @@ static const struct luaL_reg glspi_app_funcs[] = {
{"keycmd", glspi_keycmd},
{"launch", glspi_launch},
{"keygrab", glspi_keygrab},
+ {"reloadconf", glspi_reloadconf},
{NULL,NULL}
};
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.