我在 Sublime Text 的文件中选择了几个字符串,我想将它们全部转换为小写。
如何在 Sublime Text 中将它们全部转换为小写?
来自Windows/Linux的Sublime Text 文档:
Keypress Command
Ctrl + K, Ctrl + U Transform to Uppercase
Ctrl + K, Ctrl + L Transform to Lowercase
对于Mac:
Keypress Command
cmd + KU Transform to Uppercase
cmd + KL Transform to Lowercase
另请注意,Windows中的Ctrl++ (Shiftp⌘</kbd> + Shift + p in a Mac) brings up the Command Palette where you can search for these and other commands. It looks like this:
对于 Windows:
方法一(同时按下两个键)
方法2(一次按3个键)
请注意:如果您按住Ctrl+K超过两秒钟,它将开始删除文本,因此请尽量快速使用它。
我使用上述快捷方式,它们适用于我的 Windows 系统。
作为设置标题大小写快捷键Ctrl+ kt(按住Ctrl,按k和t)的奖励,转到Preferences
-->Keybindings-User
如果您使用方括号打开和关闭空白文件:
[ { "keys": ["ctrl+k", "ctrl+t"], "command": "title_case" } ]
否则,如果您已经有东西了,只需确保它是否在另一个命令之后添加逗号“,”并添加:
{ "keys": ["ctrl+k", "ctrl+t"], "command": "title_case" }
对于 Windows 操作系统
对于大写 CTRL+ K+U
对于小写 CTRL+ K+L
对于其他需要键绑定的人:
{ "keys": ["ctrl+="], "command": "upper_case" },
{ "keys": ["ctrl+-"], "command": "lower_case" }