mirror of
https://github.com/nushell/nushell.git
synced 2024-11-15 21:14:40 +01:00
commit
1b9b709dec
@ -53,7 +53,7 @@ prints out the list properly."#
|
|||||||
) -> Result<nu_protocol::Value, nu_protocol::ShellError> {
|
) -> Result<nu_protocol::Value, nu_protocol::ShellError> {
|
||||||
let width_param: Option<String> = call.get_flag(context, "width")?;
|
let width_param: Option<String> = call.get_flag(context, "width")?;
|
||||||
let color_param: bool = call.has_flag("color");
|
let color_param: bool = call.has_flag("color");
|
||||||
let seperator_param: Option<String> = call.get_flag(context, "separator")?;
|
let separator_param: Option<String> = call.get_flag(context, "separator")?;
|
||||||
|
|
||||||
match input {
|
match input {
|
||||||
Value::List { vals, .. } => {
|
Value::List { vals, .. } => {
|
||||||
@ -65,7 +65,7 @@ prints out the list properly."#
|
|||||||
call,
|
call,
|
||||||
width_param,
|
width_param,
|
||||||
color_param,
|
color_param,
|
||||||
seperator_param,
|
separator_param,
|
||||||
))
|
))
|
||||||
} else {
|
} else {
|
||||||
Ok(Value::Nothing { span: call.head })
|
Ok(Value::Nothing { span: call.head })
|
||||||
@ -80,7 +80,7 @@ prints out the list properly."#
|
|||||||
call,
|
call,
|
||||||
width_param,
|
width_param,
|
||||||
color_param,
|
color_param,
|
||||||
seperator_param,
|
separator_param,
|
||||||
))
|
))
|
||||||
} else {
|
} else {
|
||||||
// dbg!(data);
|
// dbg!(data);
|
||||||
@ -100,7 +100,7 @@ prints out the list properly."#
|
|||||||
call,
|
call,
|
||||||
width_param,
|
width_param,
|
||||||
color_param,
|
color_param,
|
||||||
seperator_param,
|
separator_param,
|
||||||
))
|
))
|
||||||
}
|
}
|
||||||
x => {
|
x => {
|
||||||
@ -127,8 +127,8 @@ fn create_grid_output2(
|
|||||||
} else {
|
} else {
|
||||||
80u16
|
80u16
|
||||||
};
|
};
|
||||||
let sep = if let Some(seperator) = separator_param {
|
let sep = if let Some(separator) = separator_param {
|
||||||
seperator
|
separator
|
||||||
} else {
|
} else {
|
||||||
" │ ".to_string()
|
" │ ".to_string()
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user