diff options
author | adri242 <adri242@users.noreply.github.com> | 2018-10-14 18:42:56 +0200 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2018-10-14 09:42:56 -0700 |
commit | f2d4b9768d75499c772cc656f574228c61f28b66 (patch) | |
tree | e0f974df2c523a2d9eb9daddbf7fad021f8e663f | |
parent | bbe4d89c258bab32977acd19c2c55de952184649 (diff) | |
download | zsh-f2d4b9768d75499c772cc656f574228c61f28b66.tar.gz zsh-f2d4b9768d75499c772cc656f574228c61f28b66.tar.bz2 zsh-f2d4b9768d75499c772cc656f574228c61f28b66.zip |
Readme for Scala plugin added (#7286)
-rw-r--r-- | plugins/scala/README.md | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/plugins/scala/README.md b/plugins/scala/README.md new file mode 100644 index 000000000..957261d9e --- /dev/null +++ b/plugins/scala/README.md @@ -0,0 +1,15 @@ +## Scala plugin + +Completion script for [scala and scalac](https://www.scala-lang.org/) commands. + +To use it, add `scala` to the plugins array of your zshrc file: +``` +plugins=(... scala) +``` + +## Aliases + +| Command | Description | +|------------------|---------------------------------------------------------------------------------| +| `scala` | Run code in the Scala language | +| `scalac` | Compiler for the Scala language | |