-
-
Notifications
You must be signed in to change notification settings - Fork 385
Closed
Labels
enhancementNew feature or requestNew feature or requestpriority.lowA low priority topicA low priority topicwontfixThis will not be worked onThis will not be worked on
Milestone
Description
init.lua:
local greetings = require 'greetings'
greetings. -- No autocompletion for 'hi' and 'hello'greetings/greetings.lua:
local m = require 'greetings.common'
dofile 'greetings/hi.lua'
dofile 'greetings/hello.lua'
return mgreetings/hi.lua:
local m = require 'greetings.common'
function m.hi()
print 'hi'
endgreetings/hello.lua:
local m = require 'greetings.common'
function m.hello()
print 'hello'
endThe hi and hello functions do not appear in the autocompletion list.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestpriority.lowA low priority topicA low priority topicwontfixThis will not be worked onThis will not be worked on