1
0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2026-01-16 23:37:55 +08:00

Compare commits

...

4 Commits

Author SHA1 Message Date
ankusharya
78f446a71c
Merge 55f8310ead into a79b37b954 2025-12-31 09:35:08 +13:00
ankusharya
55f8310ead
Update plugins/bloop/README.md for wrong commands
Co-authored-by: Brad Christensen <polyphenolics@gmail.com>
2021-10-31 14:45:14 +05:30
ankusharya
c4692f5c20
Typo in http url
Co-authored-by: Brad Christensen <polyphenolics@gmail.com>
2021-10-31 14:44:25 +05:30
Arya
a9ff851e19 Fixes #10365. Add bloop plugin 2021-10-31 02:37:25 +05:30
2 changed files with 22 additions and 0 deletions

18
plugins/bloop/README.md Normal file
View 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 |

View File

@ -0,0 +1,4 @@
alias bp='bloop projects'
alias bc='bloop compile '
alias bcl='bloop clean '
alias br='bloop run '