I noticed that the following makes my terminal's cursor become invisible. I'm seeing this in fish, but also in bash/zsh, doesn't seem to be related to my shell.
This is happening because it's printing out the "make cursor invisible" escape code without printing out the corresponding "make cursor visible" escape code (\033[?25h) at the end. Here's the raw output sqlite-utils prints out:
Feels like it's caused by a weird interaction between sqlite-utils and click.progressbar -- really maybe this should be an issue on click but I wasn't able to figure out what the interaction is between the two libraries is that's causing this.
Never mind! I hadn't tested the latest version, this was just fixed a couple of days ago in 37273d7f63f08872aa1c90c4233a0580e384ac19, also it's a duplicate of #433 :)
I noticed that the following makes my terminal's cursor become invisible. I'm seeing this in fish, but also in bash/zsh, doesn't seem to be related to my shell.
Here's how to repro:
This is happening because it's printing out the "make cursor invisible" escape code without printing out the corresponding "make cursor visible" escape code (
\033[?25h
) at the end. Here's the raw outputsqlite-utils
prints out:Feels like it's caused by a weird interaction between
sqlite-utils
andclick.progressbar
-- really maybe this should be an issue onclick
but I wasn't able to figure out what the interaction is between the two libraries is that's causing this.