This repository was archived by the owner on Oct 7, 2020. It is now read-only.
File tree 4 files changed +1
-35
lines changed
4 files changed +1
-35
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,6 @@ import System.IO
26
26
import Haskell.Ide.Engine.Plugin.ApplyRefact
27
27
import Haskell.Ide.Engine.Plugin.Brittany
28
28
import Haskell.Ide.Engine.Plugin.Example2
29
- import Haskell.Ide.Engine.Plugin.Bios
30
29
-- import Haskell.Ide.Engine.Plugin.HaRe
31
30
import Haskell.Ide.Engine.Plugin.Haddock
32
31
import Haskell.Ide.Engine.Plugin.HfaAlign
@@ -56,7 +55,6 @@ plugins includeExamples = pluginDescToIdePlugins allPlugins
56
55
, packageDescriptor " package"
57
56
, pragmasDescriptor " pragmas"
58
57
, floskellDescriptor " floskell"
59
- , biosDescriptor " bios"
60
58
, genericDescriptor " generic"
61
59
]
62
60
examplePlugins =
Original file line number Diff line number Diff line change @@ -28,7 +28,6 @@ library
28
28
Haskell.Ide.Engine.Plugin.Brittany
29
29
Haskell.Ide.Engine.Plugin.Example2
30
30
Haskell.Ide.Engine.Plugin.Floskell
31
- Haskell.Ide.Engine.Plugin.Bios
32
31
-- Haskell.Ide.Engine.Plugin.HaRe
33
32
Haskell.Ide.Engine.Plugin.Haddock
34
33
Haskell.Ide.Engine.Plugin.HfaAlign
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -53,7 +53,6 @@ import Haskell.Ide.Engine.PluginUtils
53
53
import qualified Haskell.Ide.Engine.Scheduler as Scheduler
54
54
import qualified Haskell.Ide.Engine.Support.HieExtras as Hie
55
55
import Haskell.Ide.Engine.Types
56
- import qualified Haskell.Ide.Engine.Plugin.Bios as BIOS
57
56
import Haskell.Ide.Engine.Version
58
57
import qualified Language.Haskell.LSP.Control as CTRL
59
58
import qualified Language.Haskell.LSP.Core as Core
@@ -927,7 +926,7 @@ requestDiagnosticsNormal tn file mVer = do
927
926
928
927
-- get GHC diagnostics and loads the typechecked module into the cache
929
928
let reqg = GReq tn " typecheck" (Just file) (Just (file,ver)) Nothing callbackg mempty
930
- $ BIOS . setTypecheckedModule file
929
+ $ HIE . setTypecheckedModule file
931
930
callbackg (HIE. Diagnostics pd, errs) = do
932
931
forM_ errs $ \ e -> do
933
932
reactorSend $ NotShowMessage $
You can’t perform that action at this time.
0 commit comments