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
In theory setting ZSH_BASH_COMPLETIONS_FALLBACK_LOAD_NATIVE_COMPLETIONS=false.
Then use compdef _bash_completions_fallback_completer $completion (replacing completion with the proper completion function), however it's indeed something that should be improved.
You can also use it together with ZSH_BASH_COMPLETIONS_FALLBACK_WHITELIST to set to an array of completions you want to load automatically.
If I understand correctly, you should first load autocompletion script, then pass function to _bash_completions_fallback_completer. The problem is that completion script itself cannot be loaded — it uses bash-specific commands inside (on the top level, outside of any function).
Can I use it to load single completion file manually, like e.g.
load_bash_completion bla.bash.inc
?The text was updated successfully, but these errors were encountered: