SublimeFileBrowser
SublimeFileBrowser copied to clipboard
Make FileBrowser tab unclosable
Sometimes I accidentally close the FileBrowser tab by hitting Command+W while being focused on its tab instead of on the actual editor tab I intend to close. Would be nice to have an option to make the FileBrowser tab "unclosable" (i.e. sticky/protected). UPD TabsExtra plugin implements just that but still it would be nice to integrate the feature into FileBrowser.
Meh, if there is plugin already, then what’s the point to duplicate functionality, esp. unrelated to filemanagment one?
Pressing Command+W whilst using TabsExtra and Sticky Tabs selected still closes the File Browser tab. I came to this issue whilst looking for a solution myself. +1
You can disable keys in your user keybindings file:
{ "keys": ["super+w"], "command": "noop",
"context": [{ "key": "selector", "operator": "equal", "operand": "text.dired" }]
}
huh, why thank you!