From 90486230c3f990c08b7f3b4243cfbd1e0c6f222d Mon Sep 17 00:00:00 2001 From: Pepe Iborra Date: Mon, 23 Aug 2021 02:41:56 +0200 Subject: [PATCH] [ghcide] support -d cli switch (#2124) --- 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..."))