Skip to content

Commit

Permalink
eliminate unused imports warnings during compile (#654)
Browse files Browse the repository at this point in the history
Signed-off-by: Tw <tw19881113@gmail.com>
  • Loading branch information
tw4452852 authored Aug 23, 2021
1 parent 643b7df commit d1b5a69
Showing 1 changed file with 1 addition and 20 deletions.
21 changes: 1 addition & 20 deletions zellij-server/src/panes/alacritty_functions.rs
Original file line number Diff line number Diff line change
@@ -1,24 +1,5 @@
use zellij_utils::position::Position;
use zellij_utils::zellij_tile::prelude::PaletteColor;
use zellij_utils::{vte, zellij_tile};

use std::convert::TryFrom;
use std::fmt::Debug;
use std::os::unix::io::RawFd;
use std::time::{self, Instant};
use zellij_tile::data::Palette;

use zellij_utils::pane_size::PositionAndSize;

use crate::panes::AnsiCode;
use crate::panes::{
grid::Grid,
terminal_character::{
CharacterStyles, CursorShape, TerminalCharacter, EMPTY_TERMINAL_CHARACTER,
},
};
use crate::pty::VteBytes;
use crate::tab::Pane;
use std::convert::TryFrom;

pub fn parse_sgr_color(params: &mut dyn Iterator<Item = u16>) -> Option<AnsiCode> {
match params.next() {
Expand Down

0 comments on commit d1b5a69

Please sign in to comment.