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

前端 未结 6 1030
长情又很酷
长情又很酷 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 10:39

    This is the first result that pops up when Googling "Sublime Text disable autocomplete", and none of the answers answered my question completely, so I'd just like to add to the existing answers that if you are setting auto_complete to false and still having problems with Sublime Text auto-closing parentheses and brackets, then you also need to set auto_match_enabled to false. This should solve the problem. So as a whole, here is what I have:

    {
        "auto_complete": false,
        "auto_complete_commit_on_tab": false,
        "auto_close_tags":false,
        "auto_match_enabled": false
    }
    

提交回复
热议问题