1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-05 11:01:13 +02:00

zsh-workers/9309

This commit is contained in:
Tanaka Akira 2000-01-13 18:54:36 +00:00
parent 6a81d6f4d3
commit c8eba737c7
2 changed files with 3 additions and 2 deletions

View file

@ -27,7 +27,7 @@ styles=(
hosts c:_hosts
hosts-ports c:host-port
hosts-ports-users c:host-port-user
ignored-suffixes c:
ignored-patterns c:
insert-unambiguous c:bool
last-prompt c:bool
list c:listwhen

View file

@ -159,7 +159,8 @@ eorig="$orig"
# If given no `-F' option, we may want to use $fignore, turned into patterns.
[[ $#ignore -eq 0 && -z $gopt ]] && ignore=( "?*${^fignore[@]}" )
[[ $#ignore -eq 0 && -z $gopt && -n $FIGNORE ]] &&
ignore=( "?*${^fignore[@]}" )
if (( $#ignore )); then
_comp_ignore=( "$_comp_ignore[@]" "$ignore[@]" )