In keyrecord/src/keyrecord.c:

> +		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, view it on GitHub, or mute the thread.