Hi,
I am trying to map moving the cursor a line down (e.g. the down arrow) to ALT+k (to recreate the arrow keys on the keyboard, so that I can move the cursor arround without leaving the home row) by doing this:
{ "keys": "alt+j"], "command": "move", "args": {"by": "characters", "forward": false} },
This works, but I noticed, that if I keep alt+j pressed, the cursor vanishes, and when I release the keys the cursor pops up some lines below. So the behaviour works, but it is bad that the cursor vanishes, as one can only estimate when to release the keys. This does not happen if I keep the down arrow key pressed. Is there a way to fix this?