ChainOfCommand
ChainOfCommand copied to clipboard
Issue with Sublime text chain of command plugin
I am trying to set a shortcut key which performs two tasks: close the current file in current panel and move the cursor to first panel,i'have written following code in key map :
[ { "keys": ["ctrl+alt+z"], "command": "chain", "args": { "commands": [ ["close_file"], ["focus_group",{"group": 0}] ] } } ]
but it does not works if only one file is open in current panel. It actually closes that file but does not moves cursor to first panel.
@jisaacks See this StackOverflow page which has a workaround that may shed light on what the problem is.