From f1cc676ea6e7ea3f7fcbf1596d8ee2872498c514 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 8 Dec 2025 20:47:20 +0530 Subject: [PATCH] ... --- tools/cli/zsh.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/cli/zsh.go b/tools/cli/zsh.go index 98d4a96ca..f8294b7c2 100644 --- a/tools/cli/zsh.go +++ b/tools/cli/zsh.go @@ -66,7 +66,7 @@ func zsh_input_parser(data []byte, shell_state map[string]string) ([][]string, e // For some reason that I dont have the // time/interest to figure out, returning completion candidates for // these matcher types break completion, so just abort in this case. - return nil, fmt.Errorf("ZSH anchor based matching active, cannot complete") + return nil, fmt.Errorf("ZSH anchor based matching active, cannot complete. Turn it off by setting zstyle :completion: to something that does not use anchors in your ~/.zshrc") } return shell_input_parser(data, shell_state) }