Feature #106839
closedAllow shell autocompletion for the typo3 cli command dispatcher
100%
Description
symfony/console supports registering autocompletion for
the symfony-cli and console applications for several shells
over the time:
- 5.4 for Bash
- 6.1 for Fish
- 6.2 for ZSH
which are a couply of most commonly used shell variants on
today systems.
TYPO3 provides a dedicated cli aplication with the `typo3`
cli tool containing a complete dedicated command registry
due to not beeing a complete symfony application and does
not provide the command to generate the auto completion
command to register it for the aforementioned shells.
The symfony command class should be registered by EXT:core
as general available to allow autocompletion out-of-the box
with the default behaviour.
Adding this allows future improvements to provide auto-completion
for command options (for example copleting a value based against
the database etc) but falls with the basic registration command.