From 50dc4ab3574f4e265dff816d8d9a0195cd260152 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Cornell=C3=A0?= Date: Fri, 4 Sep 2020 21:54:05 +0200 Subject: [PATCH] lib: treat _ and - as part of a word Fixes #8743 --- lib/completion.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/completion.zsh b/lib/completion.zsh index 2b62785d5..a3873cd08 100644 --- a/lib/completion.zsh +++ b/lib/completion.zsh @@ -1,7 +1,7 @@ # fixme - the load process here seems a bit bizarre zmodload -i zsh/complist -WORDCHARS='' +WORDCHARS='_-' unsetopt menu_complete # do not autoselect the first completion entry unsetopt flowcontrol