Given the following code: ``` import Data.Map () foo = fromList [] ``` *ghcide* will produce a code action "Add fromList to the import list of Data.Map". However, the code below will not produce an "Add fromList to the importList" suggestions at all: ``` import Data.Map () import Data.HashMap.Strict() foo = fromList [] ```