Sublime Text 常用快捷键

当前使用Sublime Text 4,持续更新中。

这些快捷键只在MacOS里测试过

移动字符串
向右:⌘ + ]
向左:⌘ + ]
改变字符大小写
全大写:⌘ + k + u
全小写:⌘ + k + l
先按住⌘ + k,然后再按u或l。
在多个标签页切换
⌥ + ⌘ + 方向键(←、→)
⌘ + 对应的数字,切换到相应的标签

修复Mac下home和end会直接跳转到文本开头和结尾
打开配置:Preferences > Key Bindings
在配置数组里增加:

{ "keys": ["home"], "command": "move_to", "args": {"to": "bol"} },
{ "keys": ["end"], "command": "move_to", "args": {"to": "eol"} },
{ "keys": ["shift+end"], "command": "move_to", "args": {"to": "eol", "extend": true} },
{ "keys": ["shift+home"], "command": "move_to", "args": {"to": "bol", "extend": true } }

来源:https://gist.github.com/ihor-lev/120e4c822d145f690f90a3fee77e2e53