Last active
August 29, 2015 14:24
-
-
Save bland-industries/cbf1e6dbe5a0b91ad3aa to your computer and use it in GitHub Desktop.
Need More View. Sublime plugin to show more of the view and less of the not view.
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 MoreViewCommand(sublime_plugin.WindowCommand): | |
def run(self): | |
# sublime.active_window().show_input_panel("Name your project", "", self.inputCallback,None, None) | |
sublime.active_window().run_command("toggle_side_bar") | |
sublime.active_window().run_command("toggle_minimap") | |
sublime.active_window().run_command("toggle_status_bar") | |
sublime.active_window().run_command("toggle_tabs") | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment