Skip to content

Commit 2920808

Browse files
committed
test: Update snapshots
1 parent 28763eb commit 2920808

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

clap_complete/tests/snapshots/home/static/exhaustive/elvish/elvish/rc.elv

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ set edit:completion:arg-completer[exhaustive] = {|@words|
2222
&'exhaustive'= {
2323
cand --generate 'generate'
2424
cand --global 'everywhere'
25-
cand -h 'Print help'
26-
cand --help 'Print help'
25+
cand -h 'Print help (see more with ''--help'')'
26+
cand --help 'Print help (see more with ''--help'')'
2727
cand -V 'Print version'
2828
cand --version 'Print version'
2929
cand action 'action'

clap_complete/tests/snapshots/home/static/exhaustive/fish/fish/completions/exhaustive.fish

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
complete -c exhaustive -n "__fish_use_subcommand" -l generate -d 'generate' -r -f -a "{bash '',elvish '',fish '',powershell '',zsh ''}"
22
complete -c exhaustive -n "__fish_use_subcommand" -l global -d 'everywhere'
3-
complete -c exhaustive -n "__fish_use_subcommand" -s h -l help -d 'Print help'
3+
complete -c exhaustive -n "__fish_use_subcommand" -s h -l help -d 'Print help (see more with \'--help\')'
44
complete -c exhaustive -n "__fish_use_subcommand" -s V -l version -d 'Print version'
55
complete -c exhaustive -n "__fish_use_subcommand" -f -a "action"
66
complete -c exhaustive -n "__fish_use_subcommand" -f -a "quote"

clap_complete/tests/snapshots/home/static/exhaustive/zsh/zsh/_exhaustive

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ _exhaustive() {
1717
_arguments "${_arguments_options[@]}" \
1818
'--generate=[generate]:SHELL:(bash elvish fish powershell zsh)' \
1919
'--global[everywhere]' \
20-
'-h[Print help]' \
21-
'--help[Print help]' \
20+
'-h[Print help (see more with '\''--help'\'')]' \
21+
'--help[Print help (see more with '\''--help'\'')]' \
2222
'-V[Print version]' \
2323
'--version[Print version]' \
2424
":: :_exhaustive_commands" \

0 commit comments

Comments
 (0)