Last active
April 7, 2020 16:59
-
-
Save mauroreisvieira/c28d32222e4bddd41ef38a9843b75579 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class TestListener(sublime_plugin.EventListener): | |
def on_query_completions(self, view, prefix, locations): | |
return ([ | |
sublime.CompletionItem( | |
trigger="tmartin", | |
annotation="OverrideAudit Author", | |
completion="Terence Martin", | |
completion_format=sublime.COMPLETION_FORMAT_TEXT, | |
kind=(sublime.KIND_ID_AMBIGUOUS, "⬣", "Cool people to know") | |
) | |
], | |
sublime.INHIBIT_WORD_COMPLETIONS|sublime.INHIBIT_EXPLICIT_COMPLETIONS) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment