File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
defmodule IEx.Remsh do
2
2
@ moduledoc """
3
- Helper function injected into connecting remote nodes
4
- to properly handle autocompletion. Elixir supports:
3
+ Provides one helper function that is injected into connecting
4
+ remote nodes to properly handle autocompletion. Elixir supports:
5
5
6
- * remsh from an elixir node to an elixir node
7
- * remsh from a plain erlang node to an elixir node (through the ^G menu)
8
- * remsh from an elixir node to a plain erlang node (and get an erl shell there)
6
+ * remsh from an elixir node to an elixir node
7
+ * remsh from a plain erlang node to an elixir node (through the ^G menu)
8
+ * remsh from an elixir node to a plain erlang node (and get an erl shell there)
9
9
10
10
In order to get an Elixir shell from the ^G menu,
11
11
you need to use 'Elixir-IEx' as the shell name.
@@ -17,7 +17,7 @@ defmodule IEx.Remsh do
17
17
fn e ->
18
18
case :rpc . call node , Elixir.IEx.Autocomplete , :expand , [ e ] do
19
19
{ :badrpc , _ } -> { :no , '' , [ ] }
20
- r -> r
20
+ r -> r
21
21
end
22
22
end
23
23
end
You can’t perform that action at this time.
0 commit comments