diff options
author | Tamara Dahlgren <35777542+tldahlgren@users.noreply.github.com> | 2024-01-31 17:07:16 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-01 10:07:16 +0900 |
commit | 2fc0d05a5544d0e3e7927ec350af79d7e9f82643 (patch) | |
tree | cb2fdb3ba829f5a2f2ed17c8376307dfa588f78f /share | |
parent | faf64f1a26fe7de97e8724e98df4ed82df32a354 (diff) | |
download | spack-2fc0d05a5544d0e3e7927ec350af79d7e9f82643.tar.gz spack-2fc0d05a5544d0e3e7927ec350af79d7e9f82643.tar.bz2 spack-2fc0d05a5544d0e3e7927ec350af79d7e9f82643.tar.xz spack-2fc0d05a5544d0e3e7927ec350af79d7e9f82643.zip |
Environments: Add support for including views (#42250)
* Environments: Add support for including views (take 2)
* schema type hint fixes
Diffstat (limited to 'share')
-rwxr-xr-x | share/spack/spack-completion.fish | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/share/spack/spack-completion.fish b/share/spack/spack-completion.fish index 52def8de23..b2c0a89362 100755 --- a/share/spack/spack-completion.fish +++ b/share/spack/spack-completion.fish @@ -1179,19 +1179,19 @@ complete -c spack -n '__fish_spack_using_command config' -l scope -r -d 'configu # spack config get set -g __fish_spack_optspecs_spack_config_get h/help -complete -c spack -n '__fish_spack_using_command_pos 0 config get' -f -a 'bootstrap cdash ci compilers concretizer config definitions develop mirrors modules packages repos upstreams' +complete -c spack -n '__fish_spack_using_command_pos 0 config get' -f -a 'bootstrap cdash ci compilers concretizer config definitions develop mirrors modules packages repos upstreams view' complete -c spack -n '__fish_spack_using_command config get' -s h -l help -f -a help complete -c spack -n '__fish_spack_using_command config get' -s h -l help -d 'show this help message and exit' # spack config blame set -g __fish_spack_optspecs_spack_config_blame h/help -complete -c spack -n '__fish_spack_using_command_pos 0 config blame' -f -a 'bootstrap cdash ci compilers concretizer config definitions develop mirrors modules packages repos upstreams' +complete -c spack -n '__fish_spack_using_command_pos 0 config blame' -f -a 'bootstrap cdash ci compilers concretizer config definitions develop mirrors modules packages repos upstreams view' complete -c spack -n '__fish_spack_using_command config blame' -s h -l help -f -a help complete -c spack -n '__fish_spack_using_command config blame' -s h -l help -d 'show this help message and exit' # spack config edit set -g __fish_spack_optspecs_spack_config_edit h/help print-file -complete -c spack -n '__fish_spack_using_command_pos 0 config edit' -f -a 'bootstrap cdash ci compilers concretizer config definitions develop mirrors modules packages repos upstreams' +complete -c spack -n '__fish_spack_using_command_pos 0 config edit' -f -a 'bootstrap cdash ci compilers concretizer config definitions develop mirrors modules packages repos upstreams view' complete -c spack -n '__fish_spack_using_command config edit' -s h -l help -f -a help complete -c spack -n '__fish_spack_using_command config edit' -s h -l help -d 'show this help message and exit' complete -c spack -n '__fish_spack_using_command config edit' -l print-file -f -a print_file |