It does? I’m using 0.7.0 of autocomple-lua.
Under Planned Features on the Settings page it says: “Autocomplete required modules”
Also, if you take the following example:
local M = {}
function M.a()
end
function M.b()
M. <--- I would expect it to show not only a() here, but also c()
end
function M.c()
end
return M