Skip to content

Commit

Permalink
Fix #4: flush after E3 in Terminfo
Browse files Browse the repository at this point in the history
  • Loading branch information
passcod committed Aug 25, 2021
1 parent dd8452a commit df2bfbd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Expand Up @@ -2,13 +2,15 @@

## Next (YYYY-MM-DD)

- Flush after E3 sequence in `Terminfo` ([#4](https://github.com/watchexec/clearscreen/issues/4)).

## v1.0.6 (2021-07-22)

- Omit unsupported UTF8 input flag on non-Linux
- Omit unsupported UTF8 input flag on non-Linux.

## v1.0.5 (2021-07-22)

- Update to nix 0.22
- Update to nix 0.22.

## v1.0.4 (2021-05-22)

Expand Down
3 changes: 2 additions & 1 deletion src/lib.rs
Expand Up @@ -447,7 +447,8 @@ impl ClearScreen {
}

if let Some(seq) = info.get::<ResetScrollback>() {
seq.expand().with(&mut ctx).to(w)?;
seq.expand().with(&mut ctx).to(&mut w)?;
w.flush()?;
}
}
Self::TerminfoScreen => {
Expand Down

0 comments on commit df2bfbd

Please sign in to comment.