Skip to content

Commit 9048623

Browse files
authored
[ghcide] support -d cli switch (#2124)
1 parent e573c41 commit 9048623

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ghcide/exe/Arguments.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ arguments plugins = Arguments
3636
<*> switch (long "test" <> help "Enable additional lsp messages used by the testsuite")
3737
<*> switch (long "test-no-kick" <> help "Disable kick. Useful for testing cancellation")
3838
<*> 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")
39+
<*> switch (short 'd' <> long "verbose" <> help "Include internal events in logging output")
4040
<*> (commandP plugins <|> lspCommand <|> checkCommand)
4141
where
4242
checkCommand = Check <$> many (argument str (metavar "FILES/DIRS..."))

0 commit comments

Comments
 (0)