diff options
author | Danilo Sampaio <danilo.sampaio@gmail.com> | 2020-09-10 05:13:30 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-10 10:13:30 +0200 |
commit | dfd8794da463dd4d0649c41537b5475eaac10447 (patch) | |
tree | 6c68366df35945366c065ed9614da6b422a357d7 /docs/getting_started | |
parent | 2423a867c0540edc5535a21559e6319d920e1376 (diff) |
docs: add a Powershell autocomplete example (#7329)
Diffstat (limited to 'docs/getting_started')
-rw-r--r-- | docs/getting_started/setup_your_environment.md | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/getting_started/setup_your_environment.md b/docs/getting_started/setup_your_environment.md index 7aa7ec83f..c7b051262 100644 --- a/docs/getting_started/setup_your_environment.md +++ b/docs/getting_started/setup_your_environment.md @@ -66,6 +66,17 @@ After this add deno plugin under plugins tag in `~/.zshrc` file. for tools like `antigen` path will be `~/.antigen/bundles/robbyrussell/oh-my-zsh/plugins` and command will be `antigen bundle deno` and so on. +Example (Powershell): + +```shel +deno completions powershell > $profile +.$profile +``` + +This will be create a Powershell profile at +`$HOME\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1` by default, +and it will be run whenever you launch the PowerShell. + ### Editors and IDEs Because Deno requires the use of file extensions for module imports and allows |