Remove termion backend

This commit is contained in:
Dheepak Krishnamurthy 2020-07-28 02:08:15 -06:00
parent 299653e12c
commit a7ddc2f39c
4 changed files with 0 additions and 139 deletions

View file

@ -23,16 +23,6 @@ use tui::{
Terminal,
};
#[cfg(all(feature = "termion", not(feature = "crossterm")))]
use tui::backend::TermionBackend;
#[cfg(all(feature = "termion", not(feature = "crossterm")))]
use termion::{
event,
input::{MouseTerminal, TermRead},
raw::{IntoRawMode, RawTerminal},
screen::AlternateScreen,
};
pub fn cmp(t1: &Task, t2: &Task) -> Ordering {
let urgency1 = match &t1.uda()["urgency"] {
UDAValue::Str(_) => 0.0,