You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's a common practice to save mix tasks "flattened" in a lib/mix/tasks directory, so a custom task called Mix.Tasks.MyLib.MyTask would live in lib/mix/tasks/my_lib.my_task.ex, instead of being nested in a my_lib directory. When suggesting a module name during a defmodule completion, however, Lexical doesn't take this into account.
# in lib/mix/tasks/my_lib.my_task.exdefmodule|# currently expands todefmoduleMix.Tasks.MyLib.myTaskdo|end# should expand todefmoduleMix.Tasks.MyLib.MyTaskdo|end
The text was updated successfully, but these errors were encountered:
It's a common practice to save mix tasks "flattened" in a
lib/mix/tasks
directory, so a custom task calledMix.Tasks.MyLib.MyTask
would live inlib/mix/tasks/my_lib.my_task.ex
, instead of being nested in amy_lib
directory. When suggesting a module name during adefmodule
completion, however, Lexical doesn't take this into account.The text was updated successfully, but these errors were encountered: