mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
feat(deno): adding drA alias for --allow-all (#10501)
This commit is contained in:
parent
b7fb0a55c0
commit
44c6a71243
2 changed files with 2 additions and 0 deletions
|
@ -13,6 +13,7 @@ This plugin sets up completion and aliases for [Deno](https://deno.land).
|
|||
| dh | deno help |
|
||||
| dli | deno lint |
|
||||
| drn | deno run |
|
||||
| drA | deno run -A |
|
||||
| drw | deno run --watch |
|
||||
| dts | deno test |
|
||||
| dup | deno upgrade |
|
||||
|
|
|
@ -6,6 +6,7 @@ alias dfmt='deno fmt'
|
|||
alias dh='deno help'
|
||||
alias dli='deno lint'
|
||||
alias drn='deno run'
|
||||
alias drA='deno run -A'
|
||||
alias drw='deno run --watch'
|
||||
alias dts='deno test'
|
||||
alias dup='deno upgrade'
|
||||
|
|
Loading…
Reference in a new issue