diff --git a/src/completion.rs b/src/completion.rs index db75d74..aaa0ba8 100644 --- a/src/completion.rs +++ b/src/completion.rs @@ -3,7 +3,7 @@ use std::{error::Error, io}; use tui::{ layout::{Constraint, Corner, Direction, Layout}, style::{Color, Modifier, Style}, - text::{Span, Line}, + text::{Line, Span}, widgets::{Block, Borders, List, ListItem, ListState}, Terminal, }; diff --git a/src/help.rs b/src/help.rs index 49c9eff..f574942 100644 --- a/src/help.rs +++ b/src/help.rs @@ -4,7 +4,7 @@ use tui::{ buffer::Buffer, layout::{Alignment, Rect}, style::{Modifier, Style}, - text::{Span, Line, Text}, + text::{Line, Span, Text}, widgets::{Block, BorderType, Borders, Clear, Paragraph, Widget}, }; diff --git a/src/pane/context.rs b/src/pane/context.rs index a457cf5..f1dbdd8 100644 --- a/src/pane/context.rs +++ b/src/pane/context.rs @@ -14,7 +14,7 @@ use tui::{ layout::{Alignment, Rect}, style::{Color, Modifier, Style}, symbols, - text::{Span, Line, Text}, + text::{Line, Span, Text}, widgets::{Block, BorderType, Borders, Clear, Paragraph, StatefulWidget, Widget}, }; diff --git a/src/ui.rs b/src/ui.rs index c8de8dc..8d38d72 100644 --- a/src/ui.rs +++ b/src/ui.rs @@ -3,7 +3,7 @@ use tui::{ layout::{Alignment, Constraint, Direction, Layout, Rect}, style::{Color, Modifier, Style}, symbols, - text::{Span, Line}, + text::{Line, Span}, widgets::{Block, BorderType, Borders, Cell, LineGauge, Paragraph, Row, Table}, Frame, };