Sublime Forum

Sequence Key Bindings

#1

I found some documentation here about sequence key bindings :
http://www.sublimetext.com/docs/key-bindings

This means I can use ‘qq’ to save.
<binding key="q,q" command="save"/>

But this seems like an old syntax? Is this still supported?

0 Likes

#2

No keybdings are now written in JSON and not in XML, this was from Sublime Text 1.

{ "keys": ["q", "q"], "command": "save" },
0 Likes

#3

Thanks. I tried JSON but I did “q,q” instead of an array.

Now it works.

0 Likes