@elextr commented on this pull request.
- gboolean (*goto_perform)(GeanyDocument *doc, gint pos, gboolean definition, gpointer data);
+ + /** + * Pointer to function called by Geany to check whether the plugin implements + * additional symbol (e.g. type) highlighting in Scintilla. + * + * @see @c autocomplete_provided() for more details. + * @note There is no function in the @c PluginExtension structure informing + * plugins to perform symbol highlighting. Plugins + * implementing symbol highlighting should perform it at the appropriate + * moments based on Scintilla and Geany events such as when the document + * becomes visible or when the document is modified. + * + * @since 2.1 + **/ + gboolean (*symbol_highlight_provided)(GeanyDocument *doc, gpointer data);
This (colorization of keywords vs types) has always been a (minor) annoyance
And my 2c, thats a personal thing, for me its minor for C, where the same name cannot be a type and a function and a variable, but its not minor for me with C++ where type names and variable names and function names can overlap, and often do because the standard library took all the obvious ones (like "get" :-).