diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-09-07 08:39:20 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-09-07 08:39:20 +0000 |
commit | 0fe98894a8a40b0021d7863be9f47df91ad1e28f (patch) | |
tree | 9a6061fd635b39a529f59b7fd9c0707c4d896f4c /Completion/User/_mailboxes | |
parent | cceb4703de6973b51bfc7404f00ac9c026d415aa (diff) | |
download | zsh-0fe98894a8a40b0021d7863be9f47df91ad1e28f.tar.gz zsh-0fe98894a8a40b0021d7863be9f47df91ad1e28f.tar.xz zsh-0fe98894a8a40b0021d7863be9f47df91ad1e28f.zip |
stick some `N's into glob patterns (12768)
Diffstat (limited to 'Completion/User/_mailboxes')
-rw-r--r-- | Completion/User/_mailboxes | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Completion/User/_mailboxes b/Completion/User/_mailboxes index 40b21e89f..1f44ba7af 100644 --- a/Completion/User/_mailboxes +++ b/Completion/User/_mailboxes @@ -74,10 +74,10 @@ _mailbox_cache () { _mutt_cache=( ${=${(M)${(f)"$(<${~muttrc})"}:#mailboxes *}#mailboxes *} ) - _mbox_cache=( ${~maildirectory}/*(^/) ) - _pine_cache=( ${~pinedirectory}/**/*(.) ) + _mbox_cache=( ${~maildirectory}/*(N^/) ) + _pine_cache=( ${~pinedirectory}/**/*(N.) ) - dirboxes=( ${~maildirectory}/*(/) ) + dirboxes=( ${~maildirectory}/*(N/) ) while (( $#dirboxes )); do i=${dirboxes[1]} @@ -87,7 +87,7 @@ _mailbox_cache () { elif j=( "$i"/<1-> ) && [[ -n "$j" ]]; then _mh_cache=( "${_mh_cache[@]}" "$i" ) else - _mbox_cache=( "${_mbox_cache[@]}" "$i"/*(.) ) + _mbox_cache=( "${_mbox_cache[@]}" "$i"/*(N.) ) dirboxes=( $dirboxes "$i"/*(/) ) fi done |