可能重复:
Komodo - watch variables and execute code while on pause in the program
我正在使用带有Debug in separate console window
选项的Komodo IDE来调试基于curses的程序。所以输出进入控制台窗口。但是,我还需要在Komodo输出窗口中打印一些东西。我怎么能这样做?
答案 0 :(得分:1)
在runEncodedCommand中使用macro打印到Komodo命令输出窗口:
komodo.assertMacroVersion(2);
if (komodo.view && komodo.view.scintilla) { komodo.view.scintilla.focus(); }
var foo = "echo " + typeof(ko);
ko.run.runEncodedCommand(window, foo); // Prints object;