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