Remove repl from elixir 3

This commit is contained in:
plondon 2021-10-23 14:00:31 -04:00
parent 34fb2d9271
commit 4dd0620902
2 changed files with 9 additions and 3 deletions

View File

@ -135,9 +135,9 @@ class Test {
case "repl": case "repl":
await this.testRepl(); await this.testRepl();
break; break;
case "runrepl": // case "runrepl":
await this.testRunRepl(); // await this.testRunRepl();
break; // break;
case "scope": case "scope":
await this.testScope(); await this.testScope();
break; break;

View File

@ -17,6 +17,12 @@ install:
unzip -d "${pkg}/opt/elixir-ls" elixir-ls.zip unzip -d "${pkg}/opt/elixir-ls" elixir-ls.zip
ln -s /opt/elixir-ls/language_server.sh "${pkg}/usr/local/bin/elixir-ls" ln -s /opt/elixir-ls/language_server.sh "${pkg}/usr/local/bin/elixir-ls"
repl: |
iex
input: |
DELAY: 1
123 * 234
main: "main.exs" main: "main.exs"
template: | template: |
IO.puts("Hello, world!") IO.puts("Hello, world!")