Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

Re: Case-insensitive completion



On Sep 17,  9:40am, Oliver Kiddle wrote:
>
> Here's another idea on how to do this. It's no better than Bart's

Except that yours is not file-completion-specific, which might be
better in some circumstances.  Just one question:

> _cscomplete() {
>   _complete
>   return 1
> }

Are completers always called with no arguments?  Or should that be

    _cscomplete() {
      _complete $*
      return 1
    }

??



Messages sorted by: Reverse Date, Date, Thread, Author