I have a few auto-completions defined in a *.sublime-completions file. For the sake of this example, say I have the following triggers set up:
xyz_foo_macro
xyz_bar_macro
What I want is for the sublime text to start providing auto-complete suggestions only if I start typing xyz. But it’s providing auto-complete suggestions even if I type the word far because the letters F, A, and R are also found in my triggers: xyz_foo_macro.
What ends up happening is that every little word I write ends up popping up the auto-complete list. That’s distracting enough, but even worse is that if I hit the TAB key after typing far it will insert the auto-completion for xyz_foo_macro.
Is there a way to modify this behavior?