【发布时间】:2021-10-24 11:01:33
【问题描述】:
我无法将命令 "cursorLeft" 绑定到 "alt+h" 。这是我的设置文件keybindings.json
[ { "key": "alt+h", "command": "cursorLeft",
"when": "textInputFocus" },
{ "key": "alt+l", "command": "cursorRight",
"when": "textInputFocus" },
{ "key": "alt+k", "command": "cursorUp",
"when": "textInputFocus" },
{ "key": "alt+j", "command": "cursorDown",
"when": "textInputFocus"
}]
其他三个热键正常工作。如果我将热键 <alt+h> 更改为任何其他组合,它也可以。我的操作系统是Kali Linux。它也不适用于 Windows。我已经检查过了。有什么我可能错过的吗?
【问题讨论】:
标签: visual-studio-code settings hotkeys kali-linux