mirror of
https://github.com/nushell/nushell.git
synced 2025-08-09 18:57:44 +02:00
Replace all instances of 'column path' in help
messages with 'cell path' (#7063)
* Rewrite all 'column path' instances to 'cell path' * Minor tweak
This commit is contained in:
@ -39,15 +39,15 @@ impl Command for SubCommand {
|
||||
Some('d'),
|
||||
)
|
||||
.rest(
|
||||
"column path",
|
||||
"cell path",
|
||||
SyntaxShape::CellPath,
|
||||
"optionally, draw gradients using text from column paths",
|
||||
"for a data structure input, add a gradient to strings at the given cell paths",
|
||||
)
|
||||
.category(Category::Platform)
|
||||
}
|
||||
|
||||
fn usage(&self) -> &str {
|
||||
"Draw text with a provided start and end code making a gradient"
|
||||
"Add a color gradient (using ANSI color codes) to the given string"
|
||||
}
|
||||
|
||||
fn run(
|
||||
|
@ -16,9 +16,9 @@ impl Command for SubCommand {
|
||||
Signature::build("ansi strip")
|
||||
.input_output_types(vec![(Type::String, Type::String)])
|
||||
.rest(
|
||||
"column path",
|
||||
"cell path",
|
||||
SyntaxShape::CellPath,
|
||||
"optionally, remove ANSI sequences by column paths",
|
||||
"for a data structure input, remove ANSI sequences from strings at the given cell paths",
|
||||
)
|
||||
.category(Category::Platform)
|
||||
}
|
||||
|
Reference in New Issue
Block a user