1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2026-02-13 12:50:58 +01:00
Files
oh-my-zsh/plugins/bloop/README.md
2021-10-31 02:37:25 +05:30

19 lines
971 B
Markdown

# bloop plugin
The plugin adds several aliases for common [bloop](https://https://scalacenter.github.io/bloop/) commands.
To use it, add `bloop` to the plugins array of your zshrc file:
```zsh
plugins=(... bloop)
```
## Aliases
| Alias | Command | Description |
|----------|---------------------------------------|---------------------------------------------------------------------|
| `bp` | `brew projects` | List the projects in current repository |
| `bc` | `brew compile ` | Compile the project |
| `bcl` | `brew clean ` | Clean the project |
| `br` | `brew run ` | Run the project |