mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-21 05:52:41 +08:00
21 lines
321 B
Markdown
21 lines
321 B
Markdown
# Autocompletion
|
|
|
|
To turn on auto completion use the following commands:
|
|
|
|
For bash:
|
|
```bash
|
|
ng completion --bash >> ~/.bashrc
|
|
source ~/.bashrc
|
|
```
|
|
|
|
For zsh:
|
|
```bash
|
|
ng completion --zsh >> ~/.zshrc
|
|
source ~/.zshrc
|
|
```
|
|
|
|
Windows users using gitbash:
|
|
```bash
|
|
ng completion --bash >> ~/.bash_profile
|
|
source ~/.bash_profile
|
|
``` |