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?
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?
No keybdings are now written in JSON and not in XML, this was from Sublime Text 1.
{ "keys": ["q", "q"], "command": "save" },