From a9ff851e1954316d52955676ee3ceeb9d712a53c Mon Sep 17 00:00:00 2001 From: Arya Date: Sun, 31 Oct 2021 02:37:25 +0530 Subject: [PATCH 1/3] Fixes #10365. Add bloop plugin --- plugins/bloop/README.md | 18 ++++++++++++++++++ plugins/bloop/bloop.plugin.zsh | 4 ++++ 2 files changed, 22 insertions(+) create mode 100644 plugins/bloop/README.md create mode 100644 plugins/bloop/bloop.plugin.zsh diff --git a/plugins/bloop/README.md b/plugins/bloop/README.md new file mode 100644 index 000000000..608eb2fbd --- /dev/null +++ b/plugins/bloop/README.md @@ -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 | diff --git a/plugins/bloop/bloop.plugin.zsh b/plugins/bloop/bloop.plugin.zsh new file mode 100644 index 000000000..98e72321b --- /dev/null +++ b/plugins/bloop/bloop.plugin.zsh @@ -0,0 +1,4 @@ +alias bp='bloop projects' +alias bc='bloop compile ' +alias bcl='bloop clean ' +alias br='bloop run ' From c4692f5c206e8e85e3422b0ffdebb81ab419c2e4 Mon Sep 17 00:00:00 2001 From: ankusharya Date: Sun, 31 Oct 2021 14:44:25 +0530 Subject: [PATCH 2/3] Typo in http url Co-authored-by: Brad Christensen --- plugins/bloop/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/bloop/README.md b/plugins/bloop/README.md index 608eb2fbd..88cd04051 100644 --- a/plugins/bloop/README.md +++ b/plugins/bloop/README.md @@ -1,6 +1,6 @@ # bloop plugin -The plugin adds several aliases for common [bloop](https://https://scalacenter.github.io/bloop/) commands. +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: From 55f8310ead5a94618d28eae8602e1b34ad187a14 Mon Sep 17 00:00:00 2001 From: ankusharya Date: Sun, 31 Oct 2021 14:45:14 +0530 Subject: [PATCH 3/3] Update plugins/bloop/README.md for wrong commands Co-authored-by: Brad Christensen --- plugins/bloop/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/bloop/README.md b/plugins/bloop/README.md index 88cd04051..d7953588c 100644 --- a/plugins/bloop/README.md +++ b/plugins/bloop/README.md @@ -12,7 +12,7 @@ plugins=(... bloop) | 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 | +| `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 |