Skip to content

Commit

Permalink
Change category of scope commands to core (nushell#10892)
Browse files Browse the repository at this point in the history
  • Loading branch information
KAAtheWiseGit authored and dmatos2012 committed Feb 20, 2024
1 parent 5abed8e commit d2f4a2b
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion crates/nu-cmd-lang/src/core_commands/scope/aliases.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ impl Command for ScopeAliases {
Signature::build("scope aliases")
.input_output_types(vec![(Type::Nothing, Type::Any)])
.allow_variants_without_examples(true)
.category(Category::Filters)
.category(Category::Core)
}

fn usage(&self) -> &str {
Expand Down
2 changes: 1 addition & 1 deletion crates/nu-cmd-lang/src/core_commands/scope/commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ impl Command for ScopeCommands {
Signature::build("scope commands")
.input_output_types(vec![(Type::Nothing, Type::Any)])
.allow_variants_without_examples(true)
.category(Category::Filters)
.category(Category::Core)
}

fn usage(&self) -> &str {
Expand Down
2 changes: 1 addition & 1 deletion crates/nu-cmd-lang/src/core_commands/scope/engine_stats.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ impl Command for ScopeEngineStats {
Signature::build("scope engine-stats")
.input_output_types(vec![(Type::Nothing, Type::Any)])
.allow_variants_without_examples(true)
.category(Category::Filters)
.category(Category::Core)
}

fn usage(&self) -> &str {
Expand Down
2 changes: 1 addition & 1 deletion crates/nu-cmd-lang/src/core_commands/scope/externs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ impl Command for ScopeExterns {
Signature::build("scope externs")
.input_output_types(vec![(Type::Nothing, Type::Any)])
.allow_variants_without_examples(true)
.category(Category::Filters)
.category(Category::Core)
}

fn usage(&self) -> &str {
Expand Down
2 changes: 1 addition & 1 deletion crates/nu-cmd-lang/src/core_commands/scope/modules.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ impl Command for ScopeModules {
Signature::build("scope modules")
.input_output_types(vec![(Type::Nothing, Type::Any)])
.allow_variants_without_examples(true)
.category(Category::Filters)
.category(Category::Core)
}

fn usage(&self) -> &str {
Expand Down
2 changes: 1 addition & 1 deletion crates/nu-cmd-lang/src/core_commands/scope/variables.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ impl Command for ScopeVariables {
Signature::build("scope variables")
.input_output_types(vec![(Type::Nothing, Type::Any)])
.allow_variants_without_examples(true)
.category(Category::Filters)
.category(Category::Core)
}

fn usage(&self) -> &str {
Expand Down

0 comments on commit d2f4a2b

Please sign in to comment.