1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-11-27 16:20:07 +00:00
ohmyzsh/plugins/bloop/README.md

19 lines
963 B
Markdown
Raw Normal View History

2021-10-30 21:07:25 +00:00
# bloop plugin
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 |
|----------|---------------------------------------|---------------------------------------------------------------------|
| `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 |