My apologies if it is the wrong spot to ask for support. I figured this was the best spot to get help from facelessuser and those that enjoy this plugin.
I find this plugin does a much nicer job for the task Close All Tabs
than the function built-in to ST3. Specifically, if I have a pane open, TabsExtraās function will close only the tabs within the pane I am working and leave the others untouched.
I want to map Close All Tabs
to a short-cut key but canāt get it to work. From Tab Context.sublime-menu
I copied:
"command": "tabs_extra_close", "args": { "group": -1, "index": -1, "close_type": "all" }
and pasted it in Default (Linux).sublime-keymap
like this:
{ "keys": ["alt+f12"], "command": "tabs_extra_close", "args": { "group": -1, "index": -1, "close_type": "all" } },
This is a method I have used for keymapping other functions from plugins and I think it should work.
I am certain there are no keyboard conflicts. I was already using that keyboard combination for the previous Close All Tabs
short-cut.
Is there a way to have this function mapped to a keystroke?