diff options
Diffstat (limited to 'home/.oh-my-zsh/plugins/dotnet/dotnet.plugin.zsh')
| -rw-r--r-- | home/.oh-my-zsh/plugins/dotnet/dotnet.plugin.zsh | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/home/.oh-my-zsh/plugins/dotnet/dotnet.plugin.zsh b/home/.oh-my-zsh/plugins/dotnet/dotnet.plugin.zsh new file mode 100644 index 0000000..adc1ec6 --- /dev/null +++ b/home/.oh-my-zsh/plugins/dotnet/dotnet.plugin.zsh @@ -0,0 +1,27 @@ +# This scripts is copied from (MIT License): +# https://raw.githubusercontent.com/dotnet/sdk/main/scripts/register-completions.zsh + +#compdef dotnet +_dotnet_completion() { + local -a completions=("${(@f)$(dotnet complete "${words}")}") + compadd -a completions + _files +} + +compdef _dotnet_completion dotnet + +# Aliases bellow are here for backwards compatibility +# added by Shaun Tabone (https://github.com/xontab) + +alias dn='dotnet new' +alias dr='dotnet run' +alias dt='dotnet test' +alias dw='dotnet watch' +alias dwr='dotnet watch run' +alias dwt='dotnet watch test' +alias ds='dotnet sln' +alias da='dotnet add' +alias dp='dotnet pack' +alias dng='dotnet nuget' +alias db='dotnet build' +alias dres='dotnet restore' |
