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
Currently only bash complete -C is supported (because it is by far the most efficient way to do completion in bash). But for those shells which require a source <(app completion SHELL) shell script inclusion having the option is worth having. In fact, the bash implementation could simply output complete -C app app instead of the normal complete -F stuff.
The text was updated successfully, but these errors were encountered:
Currently only bash
complete -C
is supported (because it is by far the most efficient way to do completion in bash). But for those shells which require asource <(app completion SHELL)
shell script inclusion having the option is worth having. In fact, the bash implementation could simply outputcomplete -C app app
instead of the normalcomplete -F
stuff.The text was updated successfully, but these errors were encountered: