SublimeCodeIntel會自動匹配並聯想詞匯, 這在換行的時候非常麻煩, 每次點Enter 都會誤打出代碼,
解決辦法分兩步:第一步是在Perferences/setting User 中加入
"auto_complete_commit_on_tab": true,
然后看Perferences/KeyBindings Default中
{ "keys": ["enter"], "command": "commit_completion", "context": [ { "key": "auto_complete_visible" }, { "key": "setting.auto_complete_commit_on_tab", "operand": false } ] },
如上代碼是不可以修改的,所以自己在Perferences/KeyBindings User中加入以下代碼:
[ { "keys": ["enter"], "context": [ { "key": "setting.auto_complete_commit_on_tab", "operand": true } ] }, ]
以上就配置完畢了.