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:
parent
6a81d6f4d3
commit
c8eba737c7
2 changed files with 3 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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[@]" )
|
||||
|
|
Loading…
Reference in a new issue