You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixes: maros#72
**Improvements/Fixes:**
* Filter out duplicate entries from `_.*_COMMANDS="..."`
* Do not add subcommands to `_.*_COMMANDS="..."`
* add subcommands at the beginning of `_.*_macc_command` options list
* use `_.*_command_subcommand() { ... }` instead of `_.*_command subcommand() { ... }`
Fixes: maros#72
**Improvements/Fixes:**
* Filter out duplicate entries from `_.*_COMMANDS="..."`
* Do not add subcommands to `_.*_COMMANDS="..."`
* add subcommands at the beginning of `_.*_macc_command` options list
* use `_.*_command_subcommand() { ... }` instead of `_.*_command subcommand() { ... }`
After creating a subcommand (e.g. My/App/command/subcommand.pm) bash_completion is broken, as it creates bash function names containing white spaces:
_..._macc_command subcommand() { .... }
instead of
_..._macc_command_subcommand() { .... }
The text was updated successfully, but these errors were encountered: