Skip to content

Commit

Permalink
[ghcide] support -d cli switch (#2124)
Browse files Browse the repository at this point in the history
  • Loading branch information
pepeiborra committed Aug 23, 2021
1 parent e573c41 commit 9048623
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ghcide/exe/Arguments.hs
Expand Up @@ -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..."))
Expand Down

0 comments on commit 9048623

Please sign in to comment.