I update to Sublime 4 and I am getting problems with an older chain command keymaps.
I am triying to close a Sublime Repl session with a simple chain command, my old shortcut work fine with Sublime 3 but not with Sublime 4, If I split in two command works, but its not very elegant. Do you know some solution?
// This work
{"keys": ["ctrl+alt+enter"], "command": "chain", "args": {"commands": [
["focus_group", {"group":1}]
] } },
// This work too
{"keys": ["ctrl+alt+shift"], "command": "chain", "args": {"commands": [
["repl_kill"]
] } },
// Dont work, work fine with Sublime 3
{"keys": ["ctrl+alt+enter"], "command": "chain", "args": {"commands": [
["focus_group", {"group":1}],
["repl_kill"]
] } }
My groups and windows look like this.
I use Legacy package this is the reason that look like Sublime 3:
