mirror of
https://github.com/nushell/nushell.git
synced 2025-06-30 22:50:14 +02:00
general keybindings (#775)
* general keybindings * get value function * check error for keybinding * cmd and send for keybingins * better error message
This commit is contained in:
@ -207,7 +207,7 @@ pub fn group_by(values: PipelineData, head: Span, config: &Config) -> (PipelineD
|
||||
.or_insert_with(|| vec![val.clone()]);
|
||||
} else {
|
||||
lists
|
||||
.entry(val.clone().into_string(",", config))
|
||||
.entry(val.into_string(",", config))
|
||||
.and_modify(|v: &mut Vec<Value>| v.push(val.clone()))
|
||||
.or_insert_with(|| vec![val.clone()]);
|
||||
}
|
||||
|
Reference in New Issue
Block a user