Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,21 @@ fi
Next time you load a Bash session you'll have basic completions for the `ddev`
alias described above.

#### Zsh Completion

The Bash completion script will work for Zsh as well, but requires a little
configuration. The following lines must all be found somewhere (and in this
order, though they needn't be adjacent to one another) in your `.zshrc` file,
or a file sourced from it:

```
autoload -U compinit
compinit
autoload -U bashcompinit
bashcompinit
source <path/to/ddev-completion.sh>
```

#### Configuration
In order to configure `dart_dev` for a specific project, run `ddev init` or
`pub run dart_dev init` to generate the configuration file. This should create a
Expand Down