mirror of
https://github.com/nushell/nushell.git
synced 2025-04-10 14:08:40 +02:00
fix(help operators): include has
and not-has
operators (#14943)
# Description
Realized the recently `has`/`not-has` operators were not shown with
`help operators`.
45f9d03025/crates/nu-command/src/help/help_operators.rs (L117-L118)
# User-Facing Changes
# Tests + Formatting
# After Submitting
This commit is contained in:
parent
45f9d03025
commit
ec1f7deb23
@ -45,6 +45,8 @@ impl Command for HelpOperators {
|
||||
Operator::Comparison(Comparison::NotRegexMatch),
|
||||
Operator::Comparison(Comparison::In),
|
||||
Operator::Comparison(Comparison::NotIn),
|
||||
Operator::Comparison(Comparison::Has),
|
||||
Operator::Comparison(Comparison::NotHas),
|
||||
Operator::Comparison(Comparison::StartsWith),
|
||||
Operator::Comparison(Comparison::EndsWith),
|
||||
Operator::Math(Math::Plus),
|
||||
|
Loading…
Reference in New Issue
Block a user