mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-16 02:40:08 +00:00
feat(dotnet): update completion script (#12028)
This commit is contained in:
parent
346bd1cd53
commit
48ccc7b36d
1 changed files with 7 additions and 15 deletions
|
@ -1,22 +1,14 @@
|
||||||
# This scripts is copied from (MIT License):
|
# 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()
|
#compdef dotnet
|
||||||
{
|
_dotnet_completion() {
|
||||||
local completions=("$(dotnet complete "$words")")
|
local -a completions=("${(@f)$(dotnet complete "${words}")}")
|
||||||
|
compadd -a completions
|
||||||
# If the completion list is empty, just continue with filename selection
|
_files
|
||||||
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_zsh_complete dotnet
|
compdef _dotnet_completion dotnet
|
||||||
|
|
||||||
# Aliases bellow are here for backwards compatibility
|
# Aliases bellow are here for backwards compatibility
|
||||||
# added by Shaun Tabone (https://github.com/xontab)
|
# added by Shaun Tabone (https://github.com/xontab)
|
||||||
|
|
Loading…
Reference in a new issue