Sublime Forum

Map one key to another

#1

How would I map say shift-space to the underscore key? In general I and having trouble with the ‘command’ part of the binding.
~S

0 Likes

#2

If you want to insert a _ char when triggering shift+space, here it is:

{ "keys": "shift+space"], "command": "insert", "args": {"characters": "_"} }

However it’s not technically the same as pressing the _ key.

0 Likes