This is my Default.sublime-commands
:
[
{
"caption": "Create Pull Request in GitHub...",
"command": "git",
"args": { "argv": ["pr"] }
},
{
"keys": [ "super+[" ],
"caption": "Checkout previous",
"command": "git",
"args": { "argv": ["co", "-"] }
}
]
I can see the custom commands in the palette, but the keys for the second one are not assigned, what am I doing wrong?