Sublime Forum

Unknown key shift

#1

Fixed It turns out that shift can’t be the last key in the list. shift+end works fine. Figured I’d stick this up incase others suffer the same problem.

I’ve tried setting up some custom keybindings as such:


  { "keys": "home"], "command": "move_to", "args": {"to": "bol"} },
  { "keys": "end"], "command": "move_to", "args": {"to": "eol"} },
  { "keys": "home+shift"], "command": "move_to", "args": {"to": "bol", "extend": true} },
  { "keys": "end+shift"], "command": "move_to", "args": {"to": "eol" , "extend": true} }
]

For some reason both Sublime Text 2 and 3 give the following output:

I’ve had a look at the defaults and even created other commands such as super+shift+k and everything works fine. Any ideas what might be causing this?

0 Likes