mirror of
https://github.com/nushell/nushell.git
synced 2025-07-02 23:51:49 +02:00
Dataframe commands name (#457)
* corrected missing shellerror type * batch dataframe commands * removed option to find declaration with input * ordered dataframe folders * dataframe command name
This commit is contained in:
@ -273,7 +273,7 @@ fn get_flags_section(signature: &Signature) -> String {
|
||||
if let Some(short) = flag.short {
|
||||
if flag.required {
|
||||
format!(
|
||||
" -{}{} (required parameter){:?} {}\n",
|
||||
" -{}{} (required parameter) {:?} {}\n",
|
||||
short,
|
||||
if !flag.long.is_empty() {
|
||||
format!(", --{}", flag.long)
|
||||
@ -298,7 +298,7 @@ fn get_flags_section(signature: &Signature) -> String {
|
||||
}
|
||||
} else if flag.required {
|
||||
format!(
|
||||
" --{} (required parameter){:?} {}\n",
|
||||
" --{} (required parameter) {:?} {}\n",
|
||||
flag.long, arg, flag.desc
|
||||
)
|
||||
} else {
|
||||
|
Reference in New Issue
Block a user