File tree 1 file changed +10
-12
lines changed
1 file changed +10
-12
lines changed Original file line number Diff line number Diff line change 14
14
# ------------------------------------------------------------------------------
15
15
16
16
17
+ (( $+ functions[_tox_envs_list] )) ||
18
+ _tox_envs_list () {
19
+ local envs; envs=($( _call_program envs $service --listenvs-all) )
20
+ if [ ${# envs} -gt 0 ]; then
21
+ _values -s , ' tox environments' " ${envs[@]} "
22
+ else
23
+ _message ' tox environments (none found)'
24
+ fi
25
+ }
26
+
17
27
_arguments \
18
28
' (- 1 *)--version[show version and exit]' \
19
29
' (- 1 *)' {-h,--help}' [show help options]' \
@@ -42,18 +52,6 @@ _arguments \
42
52
' --workdir[tox working directory]: :_files -/' \
43
53
' *: :_guard "^-*" command positional substitution arguments'
44
54
45
- (( $+ functions[_tox_envs_list] )) ||
46
- _tox_envs_list () {
47
- compset -P ' *,' ; compset -S ' ,*'
48
- _wanted env-list expl ' tox env list' _tox_envs -qS,
49
- }
50
-
51
- (( $+ functions[_tox_envs] )) ||
52
- _tox_envs () {
53
- local envs; envs=($( _call_program envs $service --listenvs-all) )
54
- _describe -t envs ' tow env' envs " $@ "
55
- }
56
-
57
55
# Local Variables:
58
56
# mode: Shell-Script
59
57
# sh-indentation: 2
You can’t perform that action at this time.
0 commit comments