设置Sublime自动提示功能,因为默认的ctrl+space跟系统输入法冲突。
可以在Key Buildings - User中增加
[
{ "keys": ["alt+/"], "command":"auto_complete" },
{ "keys": ["alt+/"], "command":"replace_completion_with_auto_complete", "context":
[
{ "key": "last_command", "operator":"equal", "operand": "insert_best_completion" },
{ "key": "auto_complete_visible", "operator":"equal", "operand": false },
{ "key": "setting.tab_completion", "operator":"equal", "operand": true }
]
},
]
sublime text3自定义快捷键,参考 http://blog.youkuaiyun.com/ablipan/article/details/17138045
本文介绍如何在Sublime Text 3中设置自动提示功能,以解决默认快捷键与系统输入法冲突的问题。通过自定义快捷键配置,实现使用Alt+ / 来触发代码自动完成。
1992

被折叠的 条评论
为什么被折叠?



