mirror of
https://github.com/FliegendeWurst/tmux-thumbs.git
synced 2024-11-09 16:00:35 +00:00
Avoid extra clear
This commit is contained in:
parent
eeb2b5f98f
commit
8b4297d925
@ -5,7 +5,7 @@ use termion::async_stdin;
|
|||||||
use termion::event::Key;
|
use termion::event::Key;
|
||||||
use termion::input::TermRead;
|
use termion::input::TermRead;
|
||||||
use termion::raw::IntoRawMode;
|
use termion::raw::IntoRawMode;
|
||||||
use termion::{clear, color, cursor};
|
use termion::{color, cursor};
|
||||||
|
|
||||||
pub struct View<'a> {
|
pub struct View<'a> {
|
||||||
state: &'a mut state::State<'a>,
|
state: &'a mut state::State<'a>,
|
||||||
@ -82,9 +82,6 @@ impl<'a> View<'a> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn render(&self, stdout: &mut dyn Write) -> () {
|
fn render(&self, stdout: &mut dyn Write) -> () {
|
||||||
println!("{}{}", clear::All, cursor::Hide);
|
|
||||||
stdout.flush().unwrap();
|
|
||||||
|
|
||||||
for (index, line) in self.state.lines.iter().enumerate() {
|
for (index, line) in self.state.lines.iter().enumerate() {
|
||||||
let clean = line.trim_end_matches(|c: char| c.is_whitespace());
|
let clean = line.trim_end_matches(|c: char| c.is_whitespace());
|
||||||
|
|
||||||
@ -251,6 +248,8 @@ impl<'a> View<'a> {
|
|||||||
let mut stdin = async_stdin();
|
let mut stdin = async_stdin();
|
||||||
let mut stdout = stdout().into_raw_mode().unwrap();
|
let mut stdout = stdout().into_raw_mode().unwrap();
|
||||||
|
|
||||||
|
println!("{}", cursor::Hide);
|
||||||
|
|
||||||
let hints = match self.listen(&mut stdin, &mut stdout) {
|
let hints = match self.listen(&mut stdin, &mut stdout) {
|
||||||
CaptureEvent::Exit => vec![],
|
CaptureEvent::Exit => vec![],
|
||||||
CaptureEvent::Hint(chosen) => chosen,
|
CaptureEvent::Hint(chosen) => chosen,
|
||||||
|
Loading…
Reference in New Issue
Block a user