Skip to main content
On this page

deno completions

Command-line Usage

deno completions [OPTIONS] [shell]

Output shell completion script to standard output.

deno completions bash > /usr/local/etc/bash_completion.d/deno.bash
source /usr/local/etc/bash_completion.d/deno.bash

Examples Jump to heading

Configure Bash shell completion Jump to heading

deno completions bash > /usr/local/etc/bash_completion.d/deno.bash
source /usr/local/etc/bash_completion.d/deno.bash

Configure PowerShell shell completion Jump to heading

deno completions powershell | Out-String | Invoke-Expression

Configure zsh shell completion Jump to heading

First add the following to your .zshrc file:

fpath=(~/.zsh/completion $fpath)
autoload -U compinit
compinit

Then run the following commands:

deno completions zsh > _deno
mv _deno ~/.zsh/completion/_deno
autoload -U compinit && compinit

Configure fish shell completion Jump to heading

deno completions fish > completions.fish
chmod +x ./completions.fish