Skip to content

Commit f533f85

Browse files
committed
readme
1 parent d5d2cf7 commit f533f85

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

README.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,18 @@ tab solves this complexity by providing autocompletions that work consistently a
2020
npm install -g @bomb.sh/tab
2121
```
2222

23-
Then enable completions:
23+
Then enable completions permanently:
2424

2525
```bash
26-
source <(tab pnpm zsh) # for zsh
27-
source <(tab pnpm bash) # for bash
26+
# For zsh
27+
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!
2835
```
2936

3037
### For CLI Library (Adding Completions to Your CLI)

0 commit comments

Comments
 (0)