From b50d37be38b1252f7fd918a8e11bbbe89f559d64 Mon Sep 17 00:00:00 2001 From: Russell Kennington Date: Tue, 27 Aug 2024 15:21:05 -0600 Subject: [PATCH] Fix dotnet-suggest zsh completion shim --- src/System.CommandLine.Suggest/dotnet-suggest-shim.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/System.CommandLine.Suggest/dotnet-suggest-shim.zsh b/src/System.CommandLine.Suggest/dotnet-suggest-shim.zsh index a32f73cebb..96d7acab71 100644 --- a/src/System.CommandLine.Suggest/dotnet-suggest-shim.zsh +++ b/src/System.CommandLine.Suggest/dotnet-suggest-shim.zsh @@ -14,7 +14,7 @@ _dotnet_zsh_complete() full_line="$words" # Get the completion results, will be newline-delimited - completions=$(dotnet suggest get --executable "$full_path" -- "$full_line") + completions=$(dotnet-suggest get --executable "$full_path" -- "$full_line") # explode the completions by linefeed instead of by spaces into the descriptions for the # _values helper function.