File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed
apps/docs/src/pages/en/features Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ user does not know what commands are available. We can fix that with the
99script for the end user to use, both for ZSH & Bash and Fig! The completion will
1010be generated dynamically based on the commands and options available.
1111
12- # Setup Your Completion Using The CompletionFactory
12+ ## Setup Your Completion Using The CompletionFactory
1313
1414Your ` main.ts ` file:
1515
7474echo " source <(my-cli completion-script)" >> ~ /.zshrc
7575```
7676
77+ In case zsh does not load the completion script, you can add the following
78+ commands to your config file in order to enable completion:
79+
80+ ``` bash
81+ autoload -Uz compinit
82+ compinit
83+ ```
84+
7785<br >
7886
7987## Fig Completion integration
You can’t perform that action at this time.
0 commit comments