From 45e85e0f0307f2b1653b44d639df8c7009d0bfbf Mon Sep 17 00:00:00 2001 From: Wryn Wagner Date: Tue, 23 Feb 2021 09:20:37 -0700 Subject: [PATCH] Tired of 2-errors giving me bunk autocompletion. Downing it to 1 --- zsh/config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zsh/config b/zsh/config index a09e5d7..3c22fdf 100644 --- a/zsh/config +++ b/zsh/config @@ -14,7 +14,7 @@ bindkey -v # --- Autocompletion Settings -------------------------------- zmodload -i zsh/complist; zstyle ':completion:*' completer _complete _ignored _approximate -zstyle ':completion:*' max-errors 2 +zstyle ':completion:*' max-errors 1 zstyle ':completion:*' menu select; bindkey -M menuselect '^M' .accept-line; # don't require 'return' to select menu item