Is there a way to close all tabs in one go in Sublime Text, but leave the window with the current project open? It is really annoying when I just want to close all open file
Go to Preferences>Key Bindings - User> and add following line.
{ "keys": ["super+w"], "command": "close_file" }
Now when you hit cmd+w, only file gonna close not the whole window because you target "close_file".