Enrico Tröger wrote:
- is it possible to make debug output from a Geany plugin ? I have
tried "geany_debug", but this symbol is not visible to the plugin.
Just use g_message, g_warning and so on. geany_debug is doing almost the same as g_message. Basically, you can use the GEANY_DEBUG macro and the app->debug_mode flag in plugins and then you can add some similar code as it is in geany_debug().
Ok, I will stick to g_message/g_warning while developing and then I only need to know how to write to the "status log" in the message window.
I'll answer this in a new thread(Common SVN repository for plugins).
Check ...
But for the Lua plugin, ask Jeff ;-).
He has seen it :-)
/BL