mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-11-19 21:44:11 +01:00
moved to Completion/Zsh/Context/_default
This commit is contained in:
parent
cd26a391d9
commit
e7e55a73c1
@ -1,27 +0,0 @@
|
|||||||
#compdef -default-
|
|
||||||
|
|
||||||
local ctl
|
|
||||||
|
|
||||||
if { zstyle -s ":completion:${curcontext}:" use-compctl ctl ||
|
|
||||||
zmodload -e zsh/compctl } && [[ "$ctl" != (no|false|0|off) ]]; then
|
|
||||||
local opt
|
|
||||||
|
|
||||||
opt=()
|
|
||||||
[[ "$ctl" = *first* ]] && opt=(-T)
|
|
||||||
[[ "$ctl" = *default* ]] && opt=("$opt[@]" -D)
|
|
||||||
compcall "$opt[@]" || return 0
|
|
||||||
fi
|
|
||||||
|
|
||||||
_files "$@" && return 0
|
|
||||||
|
|
||||||
# magicequalsubst allows arguments like <any-old-stuff>=~/foo to do
|
|
||||||
# file name expansion after the =. In that case, it's natural to
|
|
||||||
# allow completion to handle file names after any equals sign.
|
|
||||||
|
|
||||||
if [[ -o magicequalsubst && "$PREFIX" = *\=* ]]; then
|
|
||||||
compstate[parameter]="${words[1]:t}-${PREFIX%%\=*}"
|
|
||||||
compset -P 1 '*='
|
|
||||||
_value "$@"
|
|
||||||
else
|
|
||||||
return 1
|
|
||||||
fi
|
|
Loading…
Reference in New Issue
Block a user