You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's a single binary distribution, so you need to do it yourself (or download from a release)
28
+
Install shell completions automatically for all detected shells:
29
+
```bash
30
+
await --autocompletions
31
+
```
32
+
33
+
This command will detect which shells (bash, zsh, fish) are installed and automatically install completions for each one, providing status feedback for each shell:
34
+
35
+
```
36
+
Detecting installed shells and installing completions...
37
+
38
+
✓ bash found
39
+
→ completions installed to ~/.bashrc
40
+
✓ zsh found
41
+
→ completions installed to ~/.zshrc
42
+
✗ fish not found
43
+
44
+
Autocompletions installation complete!
45
+
```
46
+
47
+
Alternatively, install completions manually for specific shells:
0 commit comments