Sublime Text 3 的快捷方式
Shortcut for Sublime Text 3
在我的 Sublime Text 3 中,快捷键 Ctrl+A 按预期将光标移动到行首。但是,Ctrl + E 不会将光标移动到行尾。然后,我发现这有效:Command+RightArrowKey on Mac.
有谁知道为什么Ctrl+E在官方快捷键文档中不能正常使用?我应该在键绑定映射中配置什么命令?
我的用户键绑定非常简单。
[
{ "keys": ["shift+space"], "command": "move", "args": {"by": "characters", "forward": true} },
]
列出的快捷键特定于平台和 Sublime Text 的版本。 Here is the list of all the shortcuts, there is also a comparison chart here. Further, if you are getting started with Sublime Text3 this link 可能会有所帮助。
当按键在 ST3 中不符合您的预期时,最好安装 FindKeyConflicts
通过包管理器安装它,它会帮助您找出为什么事情没有按您认为的那样进行
在我的 Sublime Text 3 中,快捷键 Ctrl+A 按预期将光标移动到行首。但是,Ctrl + E 不会将光标移动到行尾。然后,我发现这有效:Command+RightArrowKey on Mac.
有谁知道为什么Ctrl+E在官方快捷键文档中不能正常使用?我应该在键绑定映射中配置什么命令?
我的用户键绑定非常简单。
[
{ "keys": ["shift+space"], "command": "move", "args": {"by": "characters", "forward": true} },
]
列出的快捷键特定于平台和 Sublime Text 的版本。 Here is the list of all the shortcuts, there is also a comparison chart here. Further, if you are getting started with Sublime Text3 this link 可能会有所帮助。
当按键在 ST3 中不符合您的预期时,最好安装 FindKeyConflicts
通过包管理器安装它,它会帮助您找出为什么事情没有按您认为的那样进行