From 57c6b53ecd352aae0c4fca1ea4733422dcf29d63 Mon Sep 17 00:00:00 2001 From: Pepe Iborra Date: Sun, 22 Aug 2021 10:52:59 +0200 Subject: [PATCH] [ghcide] support -d cli switch --- ghcide/exe/Arguments.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghcide/exe/Arguments.hs b/ghcide/exe/Arguments.hs index 9f27265dc2..b1e1d218ea 100644 --- a/ghcide/exe/Arguments.hs +++ b/ghcide/exe/Arguments.hs @@ -36,7 +36,7 @@ arguments plugins = Arguments <*> switch (long "test" <> help "Enable additional lsp messages used by the testsuite") <*> switch (long "test-no-kick" <> help "Disable kick. Useful for testing cancellation") <*> option auto (short 'j' <> help "Number of threads (0: automatic)" <> metavar "NUM" <> value 0 <> showDefault) - <*> switch (long "verbose" <> help "Include internal events in logging output") + <*> switch (short 'd' <> long "verbose" <> help "Include internal events in logging output") <*> (commandP plugins <|> lspCommand <|> checkCommand) where checkCommand = Check <$> many (argument str (metavar "FILES/DIRS..."))