We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 193574d commit 8d4f6a7Copy full SHA for 8d4f6a7
1 file changed
needs-update/custom-completions/auto-generate/parse-fish.nu
@@ -173,6 +173,11 @@ def build-flags [] {
173
] | str join
174
)
175
176
+ } else if ('short-option' in ($subargs | columns)) and ($subargs.short-option != "") {
177
+ [
178
+ "\t-" $subargs.short-option
179
+ (if ('description' in ($subargs | columns)) and ($subargs.description != "") { [ "\t\t\t\t\t# " $subargs.description ] | str join })
180
+ ] | str join
181
}
182
183
0 commit comments