@elextr commented on this pull request.


In doc/plugins.dox:

> +static gboolean autocomplete_provided(GeanyDocument *doc, gpointer data)
+{
+    /* Check whether the plugin provides the feature for the passed document */
+    return doc->file_type->id == GEANY_FILETYPES_PYTHON;
+}
+
+
+static void autocomplete_perform(GeanyDocument *doc, gboolean force, gpointer data)
+{
+    /* The autocompletion logic comes here, including the autocompletion UI
+     * display (either using some custom widget or using Scintilla's
+     * SCI_AUTOCSHOW) */
+}
+
+
+/* The PluginExtension instance - we only implement autocompletion here. */

See the overall comment on the review.


Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you are subscribed to this thread.Message ID: <geany/geany/pull/3849/review/2135597097@github.com>