Skip to content

Instantly share code, notes, and snippets.

@dogancelik
Last active November 5, 2020 01:55
Show Gist options
  • Save dogancelik/bdf68d3265dae3aa5e2f59ac8632d211 to your computer and use it in GitHub Desktop.
Save dogancelik/bdf68d3265dae3aa5e2f59ac8632d211 to your computer and use it in GitHub Desktop.
Close project then exit in #Sublime_Text
import sublime, sublime_plugin
class close_everything(sublime_plugin.WindowCommand):
def run(self):
self.window.run_command('close_workspace')
self.window.run_command('exit')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment