mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-01-16 23:37:55 +08:00
Compare commits
4 Commits
86803ff0f2
...
78f446a71c
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
78f446a71c | ||
|
|
55f8310ead | ||
|
|
c4692f5c20 | ||
|
|
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://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` | `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 |
|
||||
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