I’m trying to write a plugin that necessitates having both visible at once(input panel and output.console panel)
However, it appears only one can be displayed at a time. is there other api
Does the code bellow i write need to be need some modified ?
[code]import sublime, sublime_plugin
class ExampleCommand(sublime_plugin.TextCommand):
def run(self, edit):
self.outputview = self.view.window().create_output_panel(“console”)
self.view.window().run_command(“show_panel”, {“panel”: “output.console”})
self.view.window().show_input_panel(“COMMAND”, “”,None, None, None)
[/code]