We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
module("AAA", package.seeall); function test() end
AAA.test()
在bbb.lua中点test可以跳转到aaa.lua
The text was updated successfully, but these errors were encountered:
event_define.lua module("event_define") EVENT_NAME = “event_name”
event.lua module("event") local setmetatable = setmetatable setmetatable(_M, {__index = require "event_define"})
test.lua local print = print local event = require "event" print(event.EVENT_NAME)
点击EVENT_NAME无法跳转到event_define里面的定义,请问下要怎么操作才行
Sorry, something went wrong.
@EricCai1991 不清楚啊,感觉这个插件好像没有module关键字的功能
No branches or pull requests
aaa.lua
bbb.lua
在bbb.lua中点test可以跳转到aaa.lua
The text was updated successfully, but these errors were encountered: