We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e573c41 commit 9048623Copy full SHA for 9048623
ghcide/exe/Arguments.hs
@@ -36,7 +36,7 @@ arguments plugins = Arguments
36
<*> switch (long "test" <> help "Enable additional lsp messages used by the testsuite")
37
<*> switch (long "test-no-kick" <> help "Disable kick. Useful for testing cancellation")
38
<*> option auto (short 'j' <> help "Number of threads (0: automatic)" <> metavar "NUM" <> value 0 <> showDefault)
39
- <*> switch (long "verbose" <> help "Include internal events in logging output")
+ <*> switch (short 'd' <> long "verbose" <> help "Include internal events in logging output")
40
<*> (commandP plugins <|> lspCommand <|> checkCommand)
41
where
42
checkCommand = Check <$> many (argument str (metavar "FILES/DIRS..."))
0 commit comments