Closed degory closed 8 months ago
Sometimes symbols imported into the current namespace scope with use are not offered as completion options.
use
For example
use IO.Std.write_line; entry() is write_line("hello"); si
Is valid and does compile and execture, but the language extension doesn't offer write_line() as a completion option within entry() in VSCode
write_line()
entry()
Sometimes symbols imported into the current namespace scope with
use
are not offered as completion options.For example
Is valid and does compile and execture, but the language extension doesn't offer
write_line()
as a completion option withinentry()
in VSCode