Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
git case insensitive completion for file names?
- X-seq: zsh-users 18911
- From: Francisco Borges <francisco.borges@xxxxxxxxx>
- To: zsh-users@xxxxxxx
- Subject: git case insensitive completion for file names?
- Date: Thu, 19 Jun 2014 13:15:37 +0200
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:from:date:message-id:subject:to:content-type; bh=Rtch7zaDR9A0TlLuO6BpOJtsjU1ZTHrDhrenC3Cj1o0=; b=EO1pEuc2MkYKVkur2Wl/8hS0qRs/3DUJWa7SF7TNqdU0uJVuVvCUVGAVmxQYOgjQSH 32jJ+kTP2ORSMQGJlb7Z6FoCC6R1aspexUQRyIQkTXAOodDIQRFwavfkPIHz2wSgfIFk Jh+D7h66d7yO374MeL+aaJJcM8CBPHVc8hYtrw6dGC8jF8mx0eJszvuGxMIVlQ5LPOTn cEoiMjZWGUo6yJjpblxOim8VmFV3K6Pi76539f1DVviIo9pWovanwzhCFSeLTgzOT9Se Hmk0Zl7VRD1OdJIc5uc6FrT5bzdnu0lNouE02nD/3Pr9XqtE61TiO2gTTXm3h/ciE7f9 6lYg==
- List-help: <mailto:zsh-users-help@zsh.org>
- List-id: Zsh Users List <zsh-users.zsh.org>
- List-post: <mailto:zsh-users@zsh.org>
- Mailing-list: contact zsh-users-help@xxxxxxx; run by ezmlm
Hi,
I have zsh set to do case insensitive completion when working with files.
However, it does not work with Git.
Any ideas? Using Zsh 5.0.5:
% zsh -f
% autoload -U compinit && compinit
% zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}'
'r:|[._-]=* r:|=*' 'l:|=* r:|=*'
% setopt nocasematch
% touch Foo
% ls fo[TAB]
% ls Foo # completes to foo
Foo
% git add fo[TAB] # does not complete
Kind regards,
--
Francisco
Messages sorted by:
Reverse Date,
Date,
Thread,
Author