diff options
author | Blaž Hrastnik | 2021-05-22 08:33:42 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-05-22 08:33:42 +0000 |
commit | b114cfa119bc94396f1ed38109a51183035574ed (patch) | |
tree | 33e30a93e984e41ae0f507478ce93754261a331a /helix-tui/src/widgets/mod.rs | |
parent | f1dc25a7741ebec630a09eaf7c7c3c91947f5078 (diff) |
Display more data in completion popups.
Diffstat (limited to 'helix-tui/src/widgets/mod.rs')
-rw-r--r-- | helix-tui/src/widgets/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-tui/src/widgets/mod.rs b/helix-tui/src/widgets/mod.rs index 00744a1c..e334b894 100644 --- a/helix-tui/src/widgets/mod.rs +++ b/helix-tui/src/widgets/mod.rs @@ -13,12 +13,12 @@ mod block; // mod list; mod paragraph; mod reflow; -// mod table; +mod table; pub use self::block::{Block, BorderType}; // pub use self::list::{List, ListItem, ListState}; pub use self::paragraph::{Paragraph, Wrap}; -// pub use self::table::{Cell, Row, Table, TableState}; +pub use self::table::{Cell, Row, Table, TableState}; use crate::{buffer::Buffer, layout::Rect}; use bitflags::bitflags; |