File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change 115115Next time you load a Bash session you'll have basic completions for the ` ddev `
116116alias described above.
117117
118+ #### Zsh Completion
119+
120+ The Bash completion script will work for Zsh as well, but requires a little
121+ configuration. The following lines must all be found somewhere (and in this
122+ order, though they needn't be adjacent to one another) in your ` .zshrc ` file,
123+ or a file sourced from it:
124+
125+ ```
126+ autoload -U compinit
127+ compinit
128+ autoload -U bashcompinit
129+ bashcompinit
130+ source <path/to/ddev-completion.sh>
131+ ```
132+
118133#### Configuration
119134In order to configure ` dart_dev ` for a specific project, run ` ddev init ` or
120135` pub run dart_dev init ` to generate the configuration file. This should create a
You can’t perform that action at this time.
0 commit comments