From 9790819ab332c97112f2732eacac4c413822fc84 Mon Sep 17 00:00:00 2001 From: Andrew Fritz Date: Wed, 22 Nov 2023 13:32:08 -0500 Subject: [PATCH] Change panel.insert to panel.run_command in q_out_panel --- q_out_panel.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/q_out_panel.py b/q_out_panel.py index d5c8e3d..d6d9308 100644 --- a/q_out_panel.py +++ b/q_out_panel.py @@ -15,7 +15,8 @@ def do(self, edit, input=None): panel.settings().set("word_wrap", False) panel.set_read_only(False) - panel.insert(edit, panel.size(), input) + # panel.insert(edit, panel.size(), input) + panel.run_command("append", {"characters": input}) panel.set_read_only(True) self.view.window().run_command("show_panel", {"panel": "output.q"}) return '' #return something so that the chain will continue