forked from extern/nushell
make ++
append lists (#6766)
* make `++` append lists * fmt * fix for database
This commit is contained in:
@ -14,6 +14,7 @@ pub enum Operator {
|
||||
RegexMatch,
|
||||
NotRegexMatch,
|
||||
Plus,
|
||||
Append,
|
||||
Minus,
|
||||
Multiply,
|
||||
Divide,
|
||||
@ -43,6 +44,7 @@ impl Display for Operator {
|
||||
Operator::RegexMatch => write!(f, "=~"),
|
||||
Operator::NotRegexMatch => write!(f, "!~"),
|
||||
Operator::Plus => write!(f, "+"),
|
||||
Operator::Append => write!(f, "++"),
|
||||
Operator::Minus => write!(f, "-"),
|
||||
Operator::Multiply => write!(f, "*"),
|
||||
Operator::Divide => write!(f, "/"),
|
||||
|
Reference in New Issue
Block a user