Drop some useless imports.

This commit is contained in:
Blaž Hrastnik 2021-05-09 18:32:40 +09:00
parent ff4c1d05de
commit ccdebb99b5
4 changed files with 1 additions and 10 deletions

View File

@ -4,7 +4,6 @@
buffer::Buffer as Surface,
layout::Rect,
style::{Color, Style},
widgets::{Block, Borders},
};
use std::borrow::Cow;

View File

@ -4,7 +4,6 @@
buffer::Buffer as Surface,
layout::Rect,
style::{Color, Style},
widgets::{Block, Borders},
};
use std::borrow::Cow;

View File

@ -4,7 +4,7 @@
buffer::Buffer as Surface,
layout::Rect,
style::{Color, Style},
widgets::{Block, Borders},
widgets::{Block, BorderType, Borders},
};
use fuzzy_matcher::skim::SkimMatcherV2 as Matcher;
@ -224,7 +224,6 @@ fn render(&self, area: Rect, surface: &mut Surface, cx: &mut Context) {
self.prompt.render(area, surface, cx);
// -- Separator
use tui::widgets::BorderType;
let style = Style::default().fg(Color::Rgb(90, 89, 119));
let symbols = BorderType::line_symbols(BorderType::Plain);
for x in inner.left()..inner.right() {

View File

@ -4,7 +4,6 @@
buffer::Buffer as Surface,
layout::Rect,
style::{Color, Style},
widgets::{Block, Borders},
};
use std::borrow::Cow;
@ -113,11 +112,6 @@ fn required_size(&mut self, viewport: (u16, u16)) -> Option<(u16, u16)> {
}
fn render(&self, viewport: Rect, surface: &mut Surface, cx: &mut Context) {
use tui::{
text::Text,
widgets::{Paragraph, Widget, Wrap},
};
cx.scroll = Some(self.scroll);
let position = self