Possible? I am trying
sublime.active_window().run_command("show_panel")
(ST2), does not seem to be working.
solved
sublime.active_window().run_command("show_panel", {"panel": "console", "toggle": False})
Possible? I am trying
sublime.active_window().run_command("show_panel")
(ST2), does not seem to be working.
solved
sublime.active_window().run_command("show_panel", {"panel": "console", "toggle": False})
Waaaait, I need to pass those “args”: {“panel”: “console”, “toggle”: false} now how do I do that…