@@ -118,7 +118,7 @@ lensProvider
118
118
-- haskell-lsp provides conversion functions
119
119
| Just nfp <- uriToNormalizedFilePath $ toNormalizedUri _uri = liftIO $
120
120
do
121
- mbMinImports <- runAction " " state $ useWithStale MinimalImports nfp
121
+ mbMinImports <- runAction " MinimalImports " state $ useWithStale MinimalImports nfp
122
122
case mbMinImports of
123
123
-- Implement the provider logic:
124
124
-- for every import, if it's lacking a explicit list, generate a code lens
@@ -212,13 +212,23 @@ minimalImportsRule recorder = define (cmapWithPrio LogShake recorder) $ \Minimal
212
212
Map. fromList
213
213
[ (realSrcSpanStart l, printOutputable i)
214
214
| L (locA -> RealSrcSpan l _) i <- fromMaybe [] mbMinImports
215
+ , not (isImplicitPrelude i)
215
216
]
216
217
res =
217
218
[ (i, Map. lookup (realSrcSpanStart l) importsMap)
218
219
| i <- imports
219
220
, RealSrcSpan l _ <- [getLoc i]
220
221
]
221
222
return ([] , MinimalImportsResult res <$ mbMinImports)
223
+ where
224
+ isImplicitPrelude :: (Outputable a ) => a -> Bool
225
+ isImplicitPrelude importDecl =
226
+ T. isPrefixOf implicitPreludeImportPrefix (printOutputable importDecl)
227
+
228
+ -- | This is the prefix of an implicit prelude import which should be ignored,
229
+ -- when considering the minimal imports rule
230
+ implicitPreludeImportPrefix :: T. Text
231
+ implicitPreludeImportPrefix = " import (implicit) Prelude"
222
232
223
233
--------------------------------------------------------------------------------
224
234
0 commit comments