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

Compare commits

...

5 Commits

Author SHA1 Message Date
ankusharya
86803ff0f2
Merge 55f8310ead into d23d3ea69f 2026-01-05 11:27:52 +13:00
dependabot[bot]
d23d3ea69f
chore(deps): bump certifi in /.github/workflows/dependencies (#13499)
Bumps [certifi](https://github.com/certifi/python-certifi) from 2025.11.12 to 2026.1.4.
- [Commits](https://github.com/certifi/python-certifi/compare/2025.11.12...2026.01.04)

---
updated-dependencies:
- dependency-name: certifi
  dependency-version: 2026.1.4
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-04 21:50:31 +01: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
3 changed files with 23 additions and 1 deletions

View File

@ -1,4 +1,4 @@
certifi==2025.11.12
certifi==2026.1.4
charset-normalizer==3.4.4
idna==3.11
PyYAML==6.0.3

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 '