forked from extern/nushell
make ++
append lists (#6766)
* make `++` append lists * fmt * fix for database
This commit is contained in:
@ -4273,6 +4273,7 @@ pub fn parse_operator(
|
||||
b"=~" => Operator::RegexMatch,
|
||||
b"!~" => Operator::NotRegexMatch,
|
||||
b"+" => Operator::Plus,
|
||||
b"++" => Operator::Append,
|
||||
b"-" => Operator::Minus,
|
||||
b"*" => Operator::Multiply,
|
||||
b"/" => Operator::Divide,
|
||||
|
Reference in New Issue
Block a user