Sakura Editor has a function to execute the script being edited by "Browse" assigned to ctrl + B,
You can do something like debugging by installing the following macro in Sakura Editor.
pythondebug.js
Editor.FileSave();
Editor.ExecCommand("python " + '"' + Editor.GetFilename() + '"', 1)
// '"'Is for when the path contains spaces
It is output properly even when an exception occurs. You may be able to do it with ruby, JS, etc.
Recommended Posts