@b4n commented on this pull request.
- if (plugin_extension_calltips_provided(editor->document, NULL))
+ plugin_extension_calltips_show(editor->document, FALSE); + + if (plugin_extension_autocomplete_provided(editor->document, NULL)) + plugin_extension_autocomplete_perform(editor->document, FALSE);
There's no need to manually call `_provided()`, at least not anymore, is there? ```suggestion plugin_extension_calltips_show(editor->document, FALSE); plugin_extension_autocomplete_perform(editor->document, FALSE); ```