Open
Description
Let's say there is a module defined as bellow.
defmodule Example.Level.Writer do
def some_func do
"Hello World"
end
end
What doesn't works
- When I start typing
Exam
autocomplete does not give a suggestion. - When I type
Example.
autocomplete does not suggest next module name i.e.Level
What works
- When I type
Example.Level.Write.
it gives autocomplete suggestion for functionsome_func