1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-23 13:21:38 +03:00
This commit is contained in:
Wez Furlong 2021-03-26 09:03:28 -07:00
parent a220237b90
commit 64236c6216
2 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,6 @@ use portable_pty::{CommandBuilder, PtySize};
use serde::{Deserialize, Deserializer, Serialize};
use smol::channel::{Receiver, Sender};
use smol::prelude::*;
use std;
use std::cell::RefCell;
use std::collections::HashMap;
use std::ffi::{OsStr, OsString};

View File

@ -10,6 +10,7 @@
//! You may wish to use `termwiz::escape::parser::Parser` in the
//! [termwiz](https://docs.rs/termwiz/) crate if you don't want to have to research
//! all those possible escape sequences for yourself.
#![allow(clippy::upper_case_acronyms)]
use utf8parse::Parser as Utf8Parser;
mod enums;
use crate::enums::*;