I use sublime text editor for writing code, and I want to set up a key binding for arrow keys, so I don’t need to move my right hand frequently. To do so, I added code in sublime-keymap:
[ { “keys”: [“alt+j”], “command”: “move”, “args”: {“by”: “characters”, “forward”: false} }, { “keys”: [“alt+l”], “command”: “move”, “args”: {“by”: “characters”, “forward”: true} }, { “keys”: [“alt+i”], “command”: “move”, “args”: {“by”: “lines”, “forward”:false} }, { “keys”: [“alt+k”], “command”: “move”, “args”: {“by”: “lines”, “forward”: true} }, ]
But, alt+j and alt+k are not working. Please help. I tried to key bind in VS code too, the same problem occurs. I am using OS Windows 10; the hotkeys defined by windows is creating this issue