File tree 3 files changed +538
-1
lines changed
3 files changed +538
-1
lines changed Original file line number Diff line number Diff line change @@ -69,6 +69,7 @@ import Ide.Plugin.GhcIde as GhcIde
69
69
import Ide.Plugin.Floskell as Floskell
70
70
import Ide.Plugin.Ormolu as Ormolu
71
71
import Ide.Plugin.StylishHaskell as StylishHaskell
72
+ import Ide.Plugin.Retrie as Retrie
72
73
#if AGPL
73
74
import Ide.Plugin.Brittany as Brittany
74
75
#endif
@@ -105,6 +106,7 @@ idePlugins includeExamples = pluginDescToIdePlugins allPlugins
105
106
-- , ghcmodDescriptor "ghcmod"
106
107
, Ormolu. descriptor " ormolu"
107
108
, StylishHaskell. descriptor " stylish-haskell"
109
+ , Retrie. descriptor " retrie"
108
110
#if AGPL
109
111
, Brittany. descriptor " brittany"
110
112
#endif
@@ -143,7 +145,7 @@ main = do
143
145
runLspMode :: LspArguments -> IO ()
144
146
runLspMode lspArgs@ LspArguments {.. } = do
145
147
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
147
149
148
150
-- lock to avoid overlapping output on stdout
149
151
lock <- newLock
Original file line number Diff line number Diff line change @@ -47,6 +47,7 @@ library
47
47
Ide.Plugin.GhcIde
48
48
Ide.Plugin.Ormolu
49
49
Ide.Plugin.Pragmas
50
+ Ide.Plugin.Retrie
50
51
Ide.Plugin.Floskell
51
52
Ide.Plugin.Formatter
52
53
Ide.Plugin.StylishHaskell
@@ -83,6 +84,8 @@ library
83
84
, optparse-simple
84
85
, process
85
86
, regex-tdfa >= 1.3.1.0
87
+ , retrie >= 0.1.1.0
88
+ , safe-exceptions
86
89
, shake >= 0.17.5
87
90
, stylish-haskell == 0.11. *
88
91
, temporary
You can’t perform that action at this time.
0 commit comments