Results 101 comments of geekscrapy

@saulpw I can repro this: `base64 /dev/urandom | head -c 1000000000 > file.txt` *NB need to use gnu base64 as others may not create multiple lines* This creates a file...

So I've come up against this again (the main issue) in a slightly different way. I have a func which cannot be decorated with async+ and I do a `vd.status`...

Ok thanks for the info. I actually have to have it in the parent thread (which is actually another curses app) and have it block as it is checking for...

It would be good to know where the temporary files is as well, just in case you want it. Maybe output the path to a "silent status" (a status that...

Depends on the terminal size 😉

You or @saulpw are probably doing this already, but maybe this could be added to the "nice things the new modal does by default" list? Kind of a test list...

`Ctrl+K` actually doesn't stop the replay for me 😬 `replay-stop` appears when I press that key combo though... ...edit Even manually issuing `replay-stop` doesn't stop it

Ok, so ctrl+k, works with the below example, but using ctrl+c still freezes at the dialog. `vd --replay-wait 1 -p cmdlog.vd https://raw.githubusercontent.com/saulpw/visidata/stable/sample_data/benchmark.csv` ``` sheet col row longname input keystrokes comment...

I noticed this as I was creating a plugin that adds/activates colorizers via a long command, and wanted to add a long command to remove the colorizers, but I can't...

For future ref: Did it this way as `sheet` apparently doesn't have a property of `allColorizers` `[vd.sheet._colorizers.remove(c) for c in vd.sheet.allColorizers if c.coloropt=='green']`