mirror of
https://github.com/nushell/nushell.git
synced 2025-04-03 14:10:41 +02:00
16 lines
467 B
Rust
16 lines
467 B
Rust
use crate::errors::ShellError;
|
|
use crate::format::VTableView;
|
|
use crate::prelude::*;
|
|
|
|
pub fn vtable(args: CommandArgs, context: RunnableContext) -> Result<(), ShellError> {
|
|
if args.input.len() > 0 {
|
|
let mut host = args.ctx.host.lock().unwrap();
|
|
let view = VTableView::from_list(&args.input);
|
|
if let Some(view) = view {
|
|
handle_unexpected(&mut *host, |host| crate::format::print_view(&view, host));
|
|
}
|
|
}
|
|
|
|
Ok(())
|
|
}
|