From 001c04d46e9195ac277c34c20b12ba20b7f146bb Mon Sep 17 00:00:00 2001 From: Hendrik Boll Date: Wed, 27 Aug 2025 12:36:29 +0200 Subject: [PATCH] zsh: dont suggest . or _ at beginning of correction --- dot_zsh/setopt.zsh | 1 + 1 file changed, 1 insertion(+) diff --git a/dot_zsh/setopt.zsh b/dot_zsh/setopt.zsh index 72f5e14..046c5e6 100644 --- a/dot_zsh/setopt.zsh +++ b/dot_zsh/setopt.zsh @@ -24,6 +24,7 @@ setopt completeinword # correction setopt correct setopt correctall +CORRECT_IGNORE="[_|.]*" # scripts unsetopt multios