Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何将使用多个光标选择所有的当前键更改为 CMD + G?
键盘快捷键在 Sublime Text 2 中被称为键绑定。这里和这里都有文档,将向您展示如何操作它们。单击“首选项”>“默认键绑定”以查看它们。将要编辑的内容复制并粘贴到“首选项”>“用户键绑定”中
例如
<binding key="cmd+t,u" command="upperCase"/>
如评论中所述,配置现在为 json 格式,用于更新的 Sublime Text。
{ "keys": ["cmd+t,u"], "command": "snake_case" }