AsyncAPI CLI Autocomplete Setup
This guide provides steps to enable autocomplete for the AsyncAPI CLI. The setup supports zsh
, bash
, and PowerShell
(manual setup only).
Automatic Setup (Post-Install Script)
The AsyncAPI CLI includes a post-install script that automatically configures autocomplete for supported shells (zsh
and bash
). No additional steps are required.
Steps:
-
Ensure that AsyncAPI CLI is installed. You can verify by running:
asyncapi --version
If the command fails, install it using:
npm install -g @asyncapi/cli
-
Apply the changes by running:
1source ~/.bashrc # For bash 2source ~/.zshrc # For zsh
-
Verify autocomplete by typing:
asyncapi <TAB>
You should see command suggestions.
Manual Setup (For PowerShell and Troubleshooting)
If the automatic setup does not work or if you need to enable autocomplete manually (especially for PowerShell), follow these steps.
Steps:
-
Build the AsyncAPI CLI manually: If you are working with the CLI project locally, you need to build it first:
1npm install 2npm run build
-
Run the autocomplete command manually:
./bin/run autocomplete # Run this from the project root folder
-
Locate the AsyncAPI CLI executable: Run the following command to find the executable path:
1which asyncapi # For bash/zsh 2Get-Command asyncapi | Select-Object -ExpandProperty Definition # For PowerShell
If the command does not return a path, ensure AsyncAPI CLI is installed.
-
Generate and apply the autocomplete script: Run the following command based on your shell:
1printf "$(./bin/run autocomplete script bash)" >> ~/.bashrc; source ~/.bashrc # For bash 2printf "$(./bin/run autocomplete script zsh)" >> ~/.zshrc; source ~/.zshrc # For zsh 3printf "$(./bin/run autocomplete script powershell)" >> $PROFILE; . $PROFILE # For PowerShell
-
Test autocomplete:
asyncapi <TAB>
If it works, autocomplete is successfully enabled!
If you encounter any issues, ensure that your shell configuration file is correctly updated and sourced. Restart your terminal if necessary.