-
I'm unsure if this is the right place to ask, but I've figured I might as well try: And regular completion works. But when I add the fzf plugin I get 2 behaviors:
Added Any guidance is greatly appreciated! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The However, considering that complex _aws_asp() {
local -a reply
_aws_profiles
compadd -a reply
}
compdef _aws_asp asp acp aws_change_access_key
Sorry, but what's |
Beta Was this translation helpful? Give feedback.
The
aws
plugin utilizes zsh's outdatedcompctl
command, which is not supported by fzf-tab.https://github.com/ohmyzsh/ohmyzsh/blob/c891b7e6ada5427f4c8cca05c8ed1ae33cb49943/plugins/aws/aws.plugin.zsh#L255
However, considering that complex
compctl
parameters are not used by the code above, you may want to try the following script:Sorry, but what's
_fzf_complete_asp
?