I can't bind command "cursorLeft"
to "alt+h"
. This is my setting file 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"
}]
Other three hotkeys work properly. If I change hotkey <alt+h>
to any other combination, It works too. My operation system is Kali Linux
. It doesn't work with Windows as well. I have checked it. Is there anything I could have missed.