diff options
| author | Bart Schaefer <barts@users.sourceforge.net> | 2007-03-23 04:30:25 +0000 |
|---|---|---|
| committer | Bart Schaefer <barts@users.sourceforge.net> | 2007-03-23 04:30:25 +0000 |
| commit | 949152124b559855a58e02c462f13cbc662f64c9 (patch) | |
| tree | 8f03dd1b9b40b49f20d209e65b1cfd62cdfb2820 | |
| parent | 23228: calendar tweaks, including summer time adjustment (diff) | |
| download | zsh-949152124b559855a58e02c462f13cbc662f64c9.tar zsh-949152124b559855a58e02c462f13cbc662f64c9.tar.gz zsh-949152124b559855a58e02c462f13cbc662f64c9.tar.bz2 zsh-949152124b559855a58e02c462f13cbc662f64c9.tar.lz zsh-949152124b559855a58e02c462f13cbc662f64c9.tar.xz zsh-949152124b559855a58e02c462f13cbc662f64c9.tar.zst zsh-949152124b559855a58e02c462f13cbc662f64c9.zip | |
22894 which was supposedly committed 2007-02-25 but somehow didn't make it:
fix muttrc path expansion in search for aliaes.
| -rw-r--r-- | Completion/Unix/Type/_email_addresses | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Unix/Type/_email_addresses b/Completion/Unix/Type/_email_addresses index ffff87163..926e8b4e3 100644 --- a/Completion/Unix/Type/_email_addresses +++ b/Completion/Unix/Type/_email_addresses @@ -131,7 +131,7 @@ _email_addresses() { if ! zstyle -s ":completion:${curcontext}:email-addresses" muttrc muttrc; then [[ -e ~/mutt/muttrc ]] && muttrc="~/mutt/muttrc" || muttrc="~/.muttrc" fi - files=( MH ${MH:-~/.mh_profile} mutt $muttrc mush ~/.mushrc mail ${MAILRC:-~/.mailrc} pine ~/.addressbook ) + files=( MH ${MH:-~/.mh_profile} mutt $~muttrc mush ~/.mushrc mail ${MAILRC:-~/.mailrc} pine ~/.addressbook ) plugins=( ${${(k)functions[(I)_email-*]#*-}:#(${(kj.|.)~files})} $files(Ne:'REPLY=( ${(k)files[(r)$REPLY]} ):') |
