diff options
| author | Jasmin <nachtjasmin@posteo.de> | 2023-12-06 08:22:06 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-06 09:22:06 +0100 |
| commit | 48ccc7b36de8efb2bd7beb9bd6e0a6f6fe03b95d (patch) | |
| tree | 76a4e1d773eb091ceeed412350d887b168dbac61 /plugins/dotnet | |
| parent | 346bd1cd53e1bd3bd881f94552efadeebab430e4 (diff) | |
| download | zsh-48ccc7b36de8efb2bd7beb9bd6e0a6f6fe03b95d.tar.gz zsh-48ccc7b36de8efb2bd7beb9bd6e0a6f6fe03b95d.tar.bz2 zsh-48ccc7b36de8efb2bd7beb9bd6e0a6f6fe03b95d.zip | |
feat(dotnet): update completion script (#12028)
Diffstat (limited to 'plugins/dotnet')
| -rw-r--r-- | plugins/dotnet/dotnet.plugin.zsh | 22 |
1 files changed, 7 insertions, 15 deletions
diff --git a/plugins/dotnet/dotnet.plugin.zsh b/plugins/dotnet/dotnet.plugin.zsh index 89d464670..40ee7efae 100644 --- a/plugins/dotnet/dotnet.plugin.zsh +++ b/plugins/dotnet/dotnet.plugin.zsh @@ -1,22 +1,14 @@ # This scripts is copied from (MIT License): -# https://github.com/dotnet/toolset/blob/master/scripts/register-completions.zsh +# https://raw.githubusercontent.com/dotnet/sdk/main/scripts/register-completions.zsh -_dotnet_zsh_complete() -{ - local completions=("$(dotnet complete "$words")") - - # If the completion list is empty, just continue with filename selection - if [ -z "$completions" ] - then - _arguments '*::arguments: _normal' - return - fi - - # This is not a variable assignment, don't remove spaces! - _values = "${(ps:\n:)completions}" +#compdef dotnet +_dotnet_completion() { + local -a completions=("${(@f)$(dotnet complete "${words}")}") + compadd -a completions + _files } -compdef _dotnet_zsh_complete dotnet +compdef _dotnet_completion dotnet # Aliases bellow are here for backwards compatibility # added by Shaun Tabone (https://github.com/xontab) |
