We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
With files Foo.hs and Bar.hs
Foo.hs
Bar.hs
module Foo where pattern P = ()
module Bar where bar = P
in Bar.hs observe that the code actions available include import Foo(P), not import Foo(pattern P)
import Foo(P)
import Foo(pattern P)
Status