【发布时间】:2021-08-03 17:11:56
【问题描述】:
我正在使用这两个绑定来自动完成:
{
"keys": ["tab"],
"command": "move",
"args": {"by": "lines", "forward": true},
"context":
[
{ "key": "auto_complete_visible", "operator": "equal", "operand": true }
]
},
{
"keys": ["shift+tab"],
"command": "move",
"args": {"by": "lines", "forward": false},
"context":
[
{ "key": "auto_complete_visible", "operator": "equal", "operand": true }
]
},
我想将"commit_completion" 命令添加到space 键:
"keys": ["space"],
"command": "commit_completion",
"context":
[
{ "key": "auto_complete_visible", "operator": "equal", "operand": true }
]
},
但它没有绑定,当我按下space 时,它充当普通空格(它使空格 xD)。我可以将它绑定到任何其他键,但不能绑定到空格。我错过了什么?
【问题讨论】:
标签: windows macros sublimetext3