How to enable tab auto complete for fastlane lane names

Theodore Gonzalez
WanderCodes
Published in
1 min readSep 3, 2020

--

Supported shells: bash, zsh, fish

  1. run this in the commandline
fastlane enable_auto_complete

You’ll see the following:

This will copy a shell script into ~/.fastlane that provides the command tab completion.Sound good? (y/n)

2. Type y

3. Follow the instructions. For bash users, add this in ~/.bash_profile

. ~/.fastlane/completions/completion.sh

4. Restart your terminal

--

--