command-line-api
command-line-api copied to clipboard
dotnet-suggest-shim.zsh script error
I think there is a typo in the dotnet-suggest-shim.zsh script. Line 18 is:
completions=$(dotnet suggest get --executable "$full_path" -- "$full_line")
There should be a hyphen between dotnet and suggest. The line should be:
completions=$(dotnet-suggest get --executable "$full_path" -- "$full_line")
I discovered the issue while setting up tab completion for zsh on my mac.
Thanks, Greg G