Remove repl from elixir 3
This commit is contained in:
parent
34fb2d9271
commit
4dd0620902
|
@ -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;
|
||||||
|
|
|
@ -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!")
|
||||||
|
|
Loading…
Reference in New Issue