How to disable Auto Complete in Sublime Text (2&3)

前端 未结 6 1034
长情又很酷
长情又很酷 2021-02-14 10:02

I understand there are a few questions surrounding the auto_complete function in Sublime Text.

However, I have not been able to disable the auto_complete function in t

6条回答
  •  旧巷少年郎
    2021-02-14 11:04

    My solution to this problem was to change "auto_complete_commit_on_tab" from true to false. This way you aren't turning off autocomplete altogether, but the autocompletion is ignored unless you hit the tab key.

    In preferences, user settings, add:

    {
    "auto_complete_commit_on_tab": false
    }
    

提交回复
热议问题