From 688c43230483fe4f0fcd9c7f09f21f8c70857a1e Mon Sep 17 00:00:00 2001 From: Guillaume Dott Date: Thu, 25 Apr 2019 13:10:26 +0200 Subject: [PATCH] zsh: add case insensitive completion --- zsh/.zshrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/zsh/.zshrc b/zsh/.zshrc index e597252..c73f641 100755 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -20,6 +20,9 @@ bashcompinit # Display a message when no match #zstyle ':completion:*:warnings' format 'No matches for: %d' +# Try first simple completion and, if that generates no matches, case-insensitive completion +zstyle ':completion:*' matcher-list '' 'm:{a-zA-Z}={A-Za-z}' + # Ignore completion functions for commands you don't have: zstyle ':completion:*:functions' ignored-patterns '_*'