I am editing code using sublime text 3 and it annoys me that pressing the TAB key changes the word without allowing me to select from a list of suggestions (combobox) or that it gives me a line break, either of the two options seems more comfortable to me
What should I write in Setting user to change this behavior or what plugin solves it?
You have to go to Preferences -> Settings and within your settings step on the value of the setting
tab_completion
(which comes by default intrue
)..If that doesn't work, you can try modifying the settings family that starts with
auto_complete
. In particular, for your case, you can see what effect turning off or turning on hasauto_complete_commit_on_tab
.If playing around with those options doesn't give you the desired result, there is a way to customize what exactly happens by pressing TAB, using a
.sublime-completions
. I'm not experienced in the syntax of that file because I've never needed to change it, so in that case I can only refer you to the exact section in the documentation about autocompletions .