Last active
November 5, 2020 01:55
-
-
Save dogancelik/bdf68d3265dae3aa5e2f59ac8632d211 to your computer and use it in GitHub Desktop.
Close project then exit in #Sublime_Text
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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