Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: new completion modifications
- X-seq: zsh-users 3733
- From: "Bart Schaefer" <schaefer@xxxxxxxxxxxxxxxxxxxxxxx>
- To: Scott Lipcon <slipcon@xxxxxxxxxx>
- Subject: Re: new completion modifications
- Date: Fri, 23 Mar 2001 16:09:41 +0000
- Cc: zsh-users@xxxxxxxxxx
- In-reply-to: <20010322215021.C533826267@xxxxxxxxxx>
- Mailing-list: contact zsh-users-help@xxxxxxxxxx; run by ezmlm
- References: <20010322215021.C533826267@xxxxxxxxxx>
On Mar 22, 4:50pm, Scott Lipcon wrote:
} Subject: Re: new completion modifications
}
} > % mutt -f +inb<C-x?>
} >
} > Control-x question-mark is bound to _complete_debug, which will dump a
} > trace of what the completion functions are doing into a temp file.
}
} That doesn't seem to be bound on my system - nothing happens.
Hmm, odd. "compinit" should be picking it up, it has a #compdef line.
} I bound it manually (bindkey '^X?' _complete_debug) and get a ton of
} output - I'll attach it to this message. there is no _mh_cache in
} there at all.
There is this, though:
+_mailboxes:6> (( ! 1 ))
That's `if (( ! $+_mailbox_cache )) then' in _mailboxes. So your zsh
thinks it has already cached all the mailboxes it needs to know about.
There probably should be some other way to force _mailboxes to reload
the cache besides:
unset _mailbox_cache
and then try C-x ? again.
--
Bart Schaefer Brass Lantern Enterprises
http://www.well.com/user/barts http://www.brasslantern.com
Zsh: http://www.zsh.org | PHPerl Project: http://phperl.sourceforge.net
Messages sorted by:
Reverse Date,
Date,
Thread,
Author