mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-08 12:01:21 +02:00
15 lines
288 B
Text
15 lines
288 B
Text
comptestinit () {
|
|
|
|
setopt extendedglob
|
|
[[ -d $ZTST_testdir/Modules/zsh ]] && module_path=( $ZTST_testdir/Modules )
|
|
|
|
zmodload -i zsh/parameter || return $?
|
|
autoload -Uz bashcompinit || return $?
|
|
bashcompinit || return $?
|
|
|
|
}
|
|
|
|
comptest () {
|
|
compgen -W 'abc abe ab a def' ab
|
|
}
|
|
|