Skip to content

Commit 8ec8c8c

Browse files
committed
tox: fix function not defined first time completion is called + simplify it
1 parent ddda39d commit 8ec8c8c

File tree

1 file changed

+10
-12
lines changed

1 file changed

+10
-12
lines changed

src/_tox

+10-12
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,16 @@
1414
# ------------------------------------------------------------------------------
1515

1616

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+
1727
_arguments \
1828
'(- 1 *)--version[show version and exit]' \
1929
'(- 1 *)'{-h,--help}'[show help options]' \
@@ -42,18 +52,6 @@ _arguments \
4252
'--workdir[tox working directory]: :_files -/' \
4353
'*: :_guard "^-*" command positional substitution arguments'
4454

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-
5755
# Local Variables:
5856
# mode: Shell-Script
5957
# sh-indentation: 2

0 commit comments

Comments
 (0)