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.
1 parent 847ea8c commit 6a36c04Copy full SHA for 6a36c04
crates/q_cli/src/cli/chat/mod.rs
@@ -117,7 +117,13 @@ pub async fn chat(initial_input: Option<String>) -> Result<ExitCode> {
117
.await;
118
119
if is_interactive {
120
- queue!(output, style::SetAttribute(Attribute::Reset), style::ResetColor).ok();
+ queue!(
121
+ output,
122
+ style::SetAttribute(Attribute::Reset),
123
+ style::ResetColor,
124
+ cursor::Show
125
+ )
126
+ .ok();
127
}
128
output.flush().ok();
129
0 commit comments