Skip to content

Commit 0122520

Browse files
committed
hlint
1 parent a12b4a4 commit 0122520

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ghcide/src/Development/IDE/Plugin/Completions.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ getCompletionsLSP ide plId
141141
exportsMap <- mapM liftIO exportsMapIO
142142
let exportsCompItems = foldMap (map (fromIdentInfo uri) . Set.toList) . Map.elems . getExportsMap <$> exportsMap
143143
exportsCompls = mempty{unqualCompls = fromMaybe [] exportsCompItems}
144-
let compls = (fst <$> localCompls) <> (fst <$> nonLocalCompls) <> (Just exportsCompls)
144+
let compls = (fst <$> localCompls) <> (fst <$> nonLocalCompls) <> Just exportsCompls
145145
pure (opts, fmap (,pm,binds) compls)
146146
case compls of
147147
Just (cci', parsedMod, bindMap) -> do

0 commit comments

Comments
 (0)