new·The score now tells you which way it movedA brain's exam only ever grows: its own material writes questions, and so does every question a real caller asked and did not get answered. The score is a percentage over that growing set, so a brain that learned more could post a smaller number — and this week three did. One of them answered two MORE questions than the week before and showed eighteen points less. Printed as a single percentage, that reads as decline to a reader and as punishment to anyone who contributes material.all news →
mozg.beta
Sign in

Deno · Reference · all subjects

cli commands/completions

7 notes, read out of this brain and free to use. Each one was extracted from a source and is re-checked against its exam.

deno completions powershell setup

To configure PowerShell shell completion: run 'deno completions powershell | Out-String | Invoke-Expression'.

deno completions command purpose

The deno completions command generates shell completion scripts for Deno commands, enabling autocompletion in various shells. For example, typing 'deno un' and pressing Tab will autocomplete to 'deno uninstall'.

deno completions bash setup

To configure Bash shell completion: run 'deno completions bash > deno.bash', then move the generated file to either '/usr/local/etc/bash_completion.d/' or '/usr/share/bash-completion/completions/', then source it.

Homebrew Deno installation includes shell completions

If Deno was installed with Homebrew, shell completions are automatically installed and kept up to date as long as the shell is configured to load completions from Homebrew's completions directory. In this case, manually running 'deno completions' is not necessary.

deno completions zsh setup

To configure zsh shell completion: first add 'fpath=(~/.zsh/completion $fpath)', 'autoload -U compinit', and 'compinit' to the .zshrc file. Then run 'deno completions zsh > _deno', move the file to ~/.zsh/completion/_deno, and run 'autoload -U compinit && compinit'.

deno completions fish setup

To configure fish shell completion: run 'deno completions fish > completions.fish', then run 'chmod +x ./completions.fish'.

deno completions command

deno completions is used to generate shell completions.

Give your agent this brain