I have a custom command in my Symfony 3 project.
This command ask some questions like the Bundle Name.
$io = new SymfonyStyle($input, $output);
$question = new Question('Please enter the name of your bundle: ', 'AppBundle');
$bundle = $io->askQuestion($question);
This code work very well but if the user made a typo error, the left arrow doesn't work.
Left arrow give ^[[D and right ^[[C
Is there a way to move cursor when user press arrow keys ?