-
Notifications
You must be signed in to change notification settings - Fork 7
Open
Description
When you include a module then the things in that module should be in scope for completion.
For example:
module Foo
def foo_method
end
end
class Bar
include Foo
def bar_method
foo # if completion runs here then it should find the foo_method because Foo was included into Bar
end
end
Reactions are currently unavailable