From f2d4b9768d75499c772cc656f574228c61f28b66 Mon Sep 17 00:00:00 2001 From: adri242 Date: Sun, 14 Oct 2018 18:42:56 +0200 Subject: [PATCH] Readme for Scala plugin added (#7286) --- plugins/scala/README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 plugins/scala/README.md 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 |