We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86e7069 commit c20fe6fCopy full SHA for c20fe6f
lib/iex/lib/iex.ex
@@ -223,10 +223,6 @@ defmodule IEx do
223
delegate_locals_to: IEx.Helpers
224
)
225
226
- if opts[:inspect_opts] do
227
- IEx.Options.set :inspect, opts[:inspect_opts]
228
- end
229
-
230
IEx.Config[
231
binding: opts[:binding] || [],
232
scope: scope,
@@ -245,7 +241,7 @@ defmodule IEx do
245
241
expand_fun = IEx.Autocomplete.expand &1
246
242
end
247
243
248
- :io.setopts gl, [expand_fun: expand_fun, binary: true]
244
+ :io.setopts gl, [expand_fun: expand_fun, binary: true, encoding: :unicode]
249
250
251
defp ensure_module_exists(node, mod) do
0 commit comments