Configuration:
{
"auto_complete_commit_on_tab": false,
"tab_completion": false
}
Console result after pressing TAB while typing a word:
command: insert_best_completion {"default": " ", "exact": true}
I assume this is due to the keys configuration in the global key bindings file:
{ "keys": "tab"], "command": "insert_best_completion", "args": {"default": "\t", "exact": true} },
{ "keys": "tab"], "command": "insert_best_completion", "args": {"default": "\t", "exact": false},
"context":
{ "key": "setting.tab_completion", "operator": "equal", "operand": true }
]
},
Only when I actually remove these lines from the keys configuration file, does TAB not cause a completion.
Hence, it appears the setting âtab_completionâ: false does not work as it should.
It appears to have worked 6 months ago for this person: sublimetext.userecho.com/topic/8 ⌠-reindent/
but seems to be broken now?