We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5d2cf7 commit f533f85Copy full SHA for f533f85
README.md
@@ -20,11 +20,18 @@ tab solves this complexity by providing autocompletions that work consistently a
20
npm install -g @bomb.sh/tab
21
```
22
23
-Then enable completions:
+Then enable completions permanently:
24
25
```bash
26
-source <(tab pnpm zsh) # for zsh
27
-source <(tab pnpm bash) # for bash
+# For zsh
+echo 'source <(tab pnpm zsh)' >> ~/.zshrc
28
+source ~/.zshrc
29
+
30
+# For bash
31
+echo 'source <(tab pnpm bash)' >> ~/.bashrc
32
+source ~/.bashrc
33
34
+# The same can be done for other shells!
35
36
37
### For CLI Library (Adding Completions to Your CLI)
0 commit comments