From 017ff998513c9c9382aed1c83469c0811a38abe0 Mon Sep 17 00:00:00 2001 From: Eric Nielsen Date: Tue, 27 Feb 2018 17:11:30 +0100 Subject: [PATCH] [completion] Don't beep on an ambiguous completion Remove beep when completion is shown. We don't want that to sound like an error. --- modules/completion/init.zsh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/completion/init.zsh b/modules/completion/init.zsh index fab8b24..ef5a68e 100644 --- a/modules/completion/init.zsh +++ b/modules/completion/init.zsh @@ -36,6 +36,9 @@ setopt PATH_DIRS # Make globbing (filename generation) not sensitive to case. unsetopt CASE_GLOB +# Don't beep on an ambiguous completion. +unsetopt LIST_BEEP + # # completion module options