Hello!
I have key binding:
{ “keys”: [“ctrl+space”], “command”: “auto_complete”, “args”: “Linux” }
And class which is called by ctrl+space
class Autocomplete(sublime_plugin.ViewEventListener): def on_query_completions(self, prefix, locations):
how to get argument “args”: “Linux” in method on_query_completions?
Aim is I need to know how on_query_completions was called, by key-press or by ctrl+space.
Thanks