File tree Expand file tree Collapse file tree 3 files changed +539
-1
lines changed Expand file tree Collapse file tree 3 files changed +539
-1
lines changed Original file line number Diff line number Diff line change @@ -69,6 +69,7 @@ import Ide.Plugin.GhcIde as GhcIde
6969import Ide.Plugin.Floskell as Floskell
7070import Ide.Plugin.Ormolu as Ormolu
7171import Ide.Plugin.StylishHaskell as StylishHaskell
72+ import Ide.Plugin.Retrie as Retrie
7273#if AGPL
7374import Ide.Plugin.Brittany as Brittany
7475#endif
@@ -105,6 +106,7 @@ idePlugins includeExamples = pluginDescToIdePlugins allPlugins
105106 -- , ghcmodDescriptor "ghcmod"
106107 , Ormolu. descriptor " ormolu"
107108 , StylishHaskell. descriptor " stylish-haskell"
109+ , Retrie. descriptor " retrie"
108110#if AGPL
109111 , Brittany. descriptor " brittany"
110112#endif
@@ -143,7 +145,7 @@ main = do
143145runLspMode :: LspArguments -> IO ()
144146runLspMode lspArgs@ LspArguments {.. } = do
145147 LSP. setupLogger argsLogFile [" hls" , " hie-bios" ]
146- $ if argsDebugOn then L. DEBUG else L. INFO
148+ $ L. DEBUG -- if argsDebugOn then L.DEBUG else L.INFO
147149
148150 -- lock to avoid overlapping output on stdout
149151 lock <- newLock
Original file line number Diff line number Diff line change @@ -47,6 +47,7 @@ library
4747 Ide.Plugin.GhcIde
4848 Ide.Plugin.Ormolu
4949 Ide.Plugin.Pragmas
50+ Ide.Plugin.Retrie
5051 Ide.Plugin.Floskell
5152 Ide.Plugin.Formatter
5253 Ide.Plugin.StylishHaskell
@@ -72,6 +73,7 @@ library
7273 , floskell == 0.10. *
7374 , ghc
7475 , ghc-boot-th
76+ , ghc-exactprint
7577 , ghcide >= 0.1
7678 , gitrev
7779 , hashable
@@ -83,6 +85,8 @@ library
8385 , optparse-simple
8486 , process
8587 , regex-tdfa >= 1.3.1.0
88+ , retrie >= 0.1.1.0
89+ , safe-exceptions
8690 , shake >= 0.17.5
8791 , stylish-haskell == 0.11. *
8892 , temporary
You can’t perform that action at this time.
0 commit comments