gpointer data;
ScintillaObject *sci;
sci = documents[i]->editor->sci;
data = g_object_steal_data(G_OBJECT(sci), "keyrecord-userdata");
g_free(data);
- }
+}
+void geany_load_module(GeanyPlugin *plugin) +{
- /* main_locale_init() must be called for your package before any localization can be done */
- main_locale_init(LOCALEDIR, GETTEXT_PACKAGE);
- plugin->info->name = _("Keystrokes recorder");
- plugin->info->description = _("Allows to record some sequence of keystrokes and replay it");
Done, thank you.
--- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/geany/geany-plugins/pull/460/files/a7b8054b6a65beec7a12a9...