Is there a way to print() from withing SuspendCurses? #1485
-
I'm using the latest develop version of Visidata, and noticed that I can no longer use the |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
This should work, I am doing it. |
Beta Was this translation helpful? Give feedback.
-
We just changed this in develop, I didn't know that people were still using print() builtin within VisiData. You can use |
Beta Was this translation helpful? Give feedback.
We just changed this in develop, I didn't know that people were still using print() builtin within VisiData. You can use
vd.printout()
to stdout andvd.printerr()
to stderr. We'll probably make SuspendCurses swap in the builtin and swap it out again when it completes.