以下条目存在于Sublime的Anaconda插件的默认键盘映射中(它打开了一个方法的文档(:
{
command": "anaconda_doc", "keys" ["ctrl+alt+d"], "context: [
{"key": "selector", "operator": "equal", "operand": "source.python"}
]
}
我想在按键中添加["ctrl+."]
,以便我可以按ctrl+alt+d
或ctrl+.
来调出文档。有没有办法在keys
条目中添加or
条件?
我已经尝试过["ctrl+alt+d", "ctrl+."]
,但这只能翻译成ctrl+alt+d+.
.我的其他尝试都没有奏效。
无法在keys
条目中添加"or" - 要获得另一个组合键来执行相同的操作,您必须复制绑定:
{
"command": "anaconda_doc", "keys" ["ctrl+alt+d"], "context": [
{"key": "selector", "operator": "equal", "operand": "source.python"}
]
},
{
"command": "anaconda_doc", "keys" ["ctrl+."], "context": [
{"key": "selector", "operator": "equal", "operand": "source.python"}
]
}