X-Git-Url: https://src.twobees.de/?a=blobdiff_plain;f=stow%2Foh-my-zsh%2F.oh-my-zsh%2Fplugins%2Fsbt%2FREADME.md;fp=stow%2Foh-my-zsh%2F.oh-my-zsh%2Fplugins%2Fsbt%2FREADME.md;h=0000000000000000000000000000000000000000;hb=1a8e170bbe5c6641a26ab1ce2e6ce6c5c1faa4cd;hp=f0201938e6e79987020865d5fe1b6562ccefd1a2;hpb=475ba35502579302593f4735c853c49ef1845dcb;p=dotfiles.git diff --git a/stow/oh-my-zsh/.oh-my-zsh/plugins/sbt/README.md b/stow/oh-my-zsh/.oh-my-zsh/plugins/sbt/README.md deleted file mode 100644 index f020193..0000000 --- a/stow/oh-my-zsh/.oh-my-zsh/plugins/sbt/README.md +++ /dev/null @@ -1,32 +0,0 @@ -# sbt plugin - -This plugin adds completion for the [sbt, the interactive build tool](https://scala-sbt.org/), -as well as some aliases for common sbt commands. - -To use it, add `sbt` to the plugins array in your zshrc file: - -```zsh -plugins=(... sbt) -``` - -## Aliases - -| Alias | Command | Description | -|-------|-----------------------|--------------------------------------------------------------| -| sbc | `sbt compile` | Compiles the main sources | -| sbcln | `sbt clean` | Deletes all generated files | -| sbcc | `sbt clean compile` | Deletes generated files, compiles the main sources | -| sbco | `sbt console` | Starts Scala with the compiled sources and all dependencies | -| sbcq | `sbt consoleQuick` | Starts Scala with all dependencies | -| sbcp | `sbt consoleProject` | Starts Scala with sbt and the build definitions | -| sbd | `sbt doc` | Generates API documentation for Scala source files | -| sbdc | `sbt dist:clean` | Deletes the distribution packages | -| sbdi | `sbt dist` | Creates the distribution packages | -| sbgi | `sbt genIdea` | Create Idea project files | -| sbp | `sbt publish` | Publishes artifacts to the repository | -| sbpl | `sbt publishLocal` | Publishes artifacts to the local Ivy repository | -| sbr | `sbt run` | Runs the main class for the project | -| sbrm | `sbt runMain` | Runs the specified main class for the project | -| sbu | `sbt update` | Resolves and retrieves external dependencies | -| sbx | `sbt test` | Compiles and runs all tests | -| sba | `sbt assembly` | Create a fat JAR with all dependencies |