We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
uv venv --clear
1 parent 5b716c4 commit ac35377Copy full SHA for ac35377
crates/uv-console/src/lib.rs
@@ -84,6 +84,9 @@ fn confirm_inner(
84
85
if hint.is_some() {
86
term.clear_last_lines(2)?;
87
+ // It's not clear why we need to clear to the end of the screen here, but it fixes lingering
88
+ // display of the hint on `bash` (the issue did not reproduce on `zsh`).
89
+ term.clear_to_end_of_screen()?;
90
} else {
91
term.clear_line()?;
92
}
0 commit comments