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 2c980d7 commit fd957a9Copy full SHA for fd957a9
src/Symfony/Component/Console/Command/DumpCompletionCommand.php
@@ -52,10 +52,12 @@ protected function configure()
52
default => ['~/.bashrc', "/etc/bash_completion.d/$commandName"],
53
};
54
55
+ $supportedShells = implode(', ', $this->getSupportedShells());
56
+
57
$this
58
->setHelp(<<<EOH
59
The <info>%command.name%</> command dumps the shell completion script required
-to use shell autocompletion (currently, bash and fish completion is supported).
60
+to use shell autocompletion (currently, {$supportedShells} completion are supported).
61
62
<comment>Static installation
63
-------------------</>
0 commit comments