BaseCommand.py 文件源码

python
阅读 23 收藏 0 点赞 0 评论 0

项目:sublime-commandbox 作者: Ortus-Solutions 项目源码 文件源码
def show_output_panel(self, text=''):
        if self.silent:
            self.status_message(text)
            return

        if self.results_in_new_tab:
            new_tab_path = os.path.join(self.commandbox_results_path(), "Commandbox Results")
            self.output_view = self.window.open_file(new_tab_path)
            self.output_view.set_scratch(True)
        else:
            self.output_view = self.window.get_output_panel("commandbox_output")
            self.show_panel()

        self.output_view.settings().set("scroll_past_end", False)
        self.add_syntax()
        self.appendToOutput(text)
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号