summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorStoyan Dimov <stoyandimov@hotmail.com>2023-02-01 10:51:31 +0100
committerGitHub <noreply@github.com>2023-02-01 10:51:31 +0100
commit27f31799df369ffdd825014bbbb853ad6a1ee520 (patch)
treec855640aaa53f2a119ddd7f4f042a789878cd963 /plugins
parentb2313ec7493dc127c9712f20654579221d0bcce6 (diff)
downloadzsh-27f31799df369ffdd825014bbbb853ad6a1ee520.tar.gz
zsh-27f31799df369ffdd825014bbbb853ad6a1ee520.tar.bz2
zsh-27f31799df369ffdd825014bbbb853ad6a1ee520.zip
feat(dotnet): add `dwt` alias (#11470)
Diffstat (limited to 'plugins')
-rw-r--r--plugins/dotnet/README.md1
-rw-r--r--plugins/dotnet/dotnet.plugin.zsh1
2 files changed, 2 insertions, 0 deletions
diff --git a/plugins/dotnet/README.md b/plugins/dotnet/README.md
index 87dfd8f8d..a15e80577 100644
--- a/plugins/dotnet/README.md
+++ b/plugins/dotnet/README.md
@@ -17,6 +17,7 @@ plugins=(... dotnet)
| dt | dotnet test | Run unit tests using the test runner specified in a .NET project. |
| dw | dotnet watch | Watch for source file changes and restart the dotnet command. |
| dwr | dotnet watch run | Watch for source file changes and restart the `run` command. |
+| dwt | dotnet watch test| Watch for source file changes and restart the `test` command. |
| ds | dotnet sln | Modify Visual Studio solution files. |
| da | dotnet add | Add a package or reference to a .NET project. |
| dp | dotnet pack | Create a NuGet package. |
diff --git a/plugins/dotnet/dotnet.plugin.zsh b/plugins/dotnet/dotnet.plugin.zsh
index 8ea31cdbd..89d464670 100644
--- a/plugins/dotnet/dotnet.plugin.zsh
+++ b/plugins/dotnet/dotnet.plugin.zsh
@@ -26,6 +26,7 @@ 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'