mirror of
https://github.com/nushell/nushell
synced 2025-01-16 07:04:09 +00:00
7e096e61d7
fix #9796 Sorry that you've had the issues. I've actually encountered them yesterday too (seems like they have appeared after some refactoring in the middle) but was not able to fix that rapid. Created a bunch of tests. cc: @fdncred Note: This option will be certainly slower then a default ones. (could be fixed but ... maybe later). Maybe it shall be cited somewhere. PS: Haven't tested on a wrapped/expanded tables. --------- Signed-off-by: Maxim Zhiburt <zhiburt@gmail.com> Co-authored-by: Darren Schroeder <343840+fdncred@users.noreply.github.com>
15 lines
406 B
Rust
15 lines
406 B
Rust
mod table;
|
|
mod table_theme;
|
|
mod types;
|
|
mod unstructured_table;
|
|
mod util;
|
|
|
|
pub mod common;
|
|
|
|
pub use common::{StringResult, TableResult};
|
|
pub use nu_color_config::TextStyle;
|
|
pub use table::{NuTable, NuTableCell, NuTableConfig};
|
|
pub use table_theme::TableTheme;
|
|
pub use types::{CollapsedTable, ExpandedTable, JustTable, TableOpts, TableOutput};
|
|
pub use unstructured_table::UnstructuredTable;
|
|
pub use util::*;
|