【发布时间】:2017-06-25 20:46:02
【问题描述】:
对于SublimeCodeIntel,默认键绑定如下:
- 跳转到定义 = Ctrl + 单击
- 跳转到定义 = Ctrl + Cmd + Alt + Up
- 返回 = Ctrl + Cmd + Alt + 左键
- 手动代码智能 = Ctrl + Shift + 空格
SublimeCodeIntel 默认键盘映射:
[
{ "keys": ["shift+ctrl+space"], "command": "code_intel_auto_complete" },
{ "keys": ["super+alt+ctrl+up"], "command": "goto_python_definition"},
{ "keys": ["super+ctrl+space"], "command": "back_to_python_definition"}
]
SublimeCodeIntel 默认鼠标绑定:
[
{ "button": "button1", "modifiers": ["ctrl"], "command": "goto_python_definition", "press_command": "drag_select" }
]
我想将“返回”的键绑定改为Ctrl+右键,如何实现?任何人都可以帮助我吗?提前致谢!
【问题讨论】:
标签: sublimetext3 keyboard-shortcuts sublimecodeintel