Reputation: 2186
{
"keys": ["control+shift+a"], "command": "align_tab",
"args" : {"user_input" : ":/f"}
}
I'm attempting to bind Control+Shift+A
to the "align colons" command of the SublimeText plugin "AlignTab"... but this keybind isn't working, despite it being a near copy paste of what's in their tutorial.
Anyone have any idea? What am I doing wrong?
Reference: https://github.com/randy3k/AlignTab
Upvotes: 1
Views: 160
Reputation: 1722
I think that Ctrl+Shift+A
might already be bound to another command. In my default keybinds file, it shows that:
{ "keys": ["ctrl+shift+a"], "command": "expand_selection", "args": {"to": "tag"} },
Other than that, your syntax checks out, so I'm not sure how that could break.
Upvotes: 1