From 4294da34e17d28287d38170da63c7b09904f95ac Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Tue, 14 Sep 2010 01:10:12 +0200 Subject: [PATCH] zsh/rc: Don't complete ./config.* files. --- zsh/rc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/zsh/rc b/zsh/rc index df4d357..21b65a9 100644 --- a/zsh/rc +++ b/zsh/rc @@ -488,6 +488,9 @@ zstyle ':completion:*' ignore-line yes # Except for mv and cp, because I often want to use to similar names, so I # complete to the same and change it. zstyle ':completion:*:(mv|cp):*' ignore-line no +# Don't complete ./config.* files, this makes running ./configure much +# simpler. Thanks to Nomexous in #zsh on Freenode (2010-03-16 01:54) +zstyle ':completion:*:*:-command-:*' ignored-patterns './config.*' # Provide a fallback completer which always completes files. Useful when Zsh's # completion is too "smart". Thanks to Frank Terbeck -- 2.45.2