ocaml-gist
ocaml-gist copied to clipboard
Get correct autocomplete result before overriding module
If I have a file with
let foo a = List.it<cursor is here>
module List = struct
let iter b = b + 2
end
I expect autocomplete for the cursor to show all the values of the stdlib List.
Currently it will always show the newly implemented List.