Hey guys!, i’m trying to find out how can i push the auto complete box to show my own wanted items (setted programmatically) instead of showing the normal completion list (indexed by sublime suggestions)
def on_query_completions(self, view, prefix, locations):
list_of_items = [("item1", "content of item1"), ("item2", "content of item2")]
return list_of_items
i’m trying to do an IDE that smart autocompletes the content (variables, functions, classes…)
any help is much appreciated!