Skip to content

Commit 6afc118

Browse files
Update interactive.rs
Pulled from #2543 Fixes interactive mode in fish where the terminal wasn't being displayed properly. fixes #1289 Co-authored-by: Lucas Trzesniewski <[email protected]>
1 parent c6d50bb commit 6afc118

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

crates/atuin/src/command/client/search/interactive.rs

+4
Original file line numberDiff line numberDiff line change
@@ -1098,6 +1098,10 @@ pub async fn history(
10981098

10991099
let mut results = app.query_results(&mut db, settings.smart_sort).await?;
11001100

1101+
if settings.inline_height > 0 {
1102+
terminal.clear()?;
1103+
}
1104+
11011105
let mut stats: Option<HistoryStats> = None;
11021106
let accept;
11031107
let result = 'render: loop {

0 commit comments

Comments
 (0)