I was looking through the GitHub issues for particle-cli and I found this feature request looking for tab completion so I whipped up a bash completion file for particle-cli using my recently acquired knowledge.
Here is my repository for the tab completion file:
@Dave, @KyleG , @mdma, I’ve tried to make my code as elegant as possible, with good indentation and logical ordering of conditions.
That’s awesome! Yay! So excited to try this out. Is this something we can incorporate into the CLI directly, or have it automatically generated somehow?
To use the completion it just needs to be placed in the /etc/bash_completion.d/ directory on Linux, or the /usr/local/etc/bash_completion.d directory on macOS. On Linux the completion will be loaded automatically, but on macOS you need to source the completion file in .bashrc or your preferred file.
Automatic generation would be very cool, but if the completion has already been created it wouldn't take too much time to just add another case for each new command.