mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-15 09:58:47 -07:00
Fixes #10365. Add bloop plugin
This commit is contained in:
parent
04c96e235f
commit
a9ff851e19
18
plugins/bloop/README.md
Normal file
18
plugins/bloop/README.md
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
# 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 |
|
4
plugins/bloop/bloop.plugin.zsh
Normal file
4
plugins/bloop/bloop.plugin.zsh
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
alias bp='bloop projects'
|
||||||
|
alias bc='bloop compile '
|
||||||
|
alias bcl='bloop clean '
|
||||||
|
alias br='bloop run '
|
Loading…
Reference in New Issue
Block a user