@eht16 commented on this pull request.
> + /* metadata */
+ plugin->info->name = _("Web helper");
+ plugin->info->description = _("Display a preview web page that gets updated "
+ "upon document saving and provide web "
+ "analysis and debugging tools (aka Web "
+ "Inspector), all using WebKit.");
+ plugin->info->version = GWH_PLUGIN_VERSION;
+ plugin->info->author = "Colomban Wendling <[email protected]>";
+
+ /* entry points */
+ plugin->funcs->init = gwh_plugin_init;
+ plugin->funcs->cleanup = gwh_plugin_cleanup;
+ plugin->funcs->configure = gwh_plugin_configure;
+
+ /* even though it's not really a good idea to keep all the libraries we load
+ * into memory, this is needed for webkit. first, without this we creash
after
```suggestion
* into memory, this is needed for webkit. first, without this we crash after
```
:)
(though it's an old typo)
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/pull/1455#pullrequestreview-2955356020
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany-plugins/pull/1455/review/[email protected]>