fzf-tab icon indicating copy to clipboard operation
fzf-tab copied to clipboard

[Q] How to custom the order of completion groups order?

Open eval-exec opened this issue 2 years ago • 1 comments

Describe your question

My fzf-tab related config is :

  zstyle ':completion:*' sort false
        zstyle ':completion:*:descriptions' format '[%d]'
        zstyle ':fzf-tab:*' prefix ' '

        zstyle ':fzf-tab:*' switch-group ',' '.'

I'm working in a git repo. And I execute git rebase -i <tab>, fzf-tab show this: image I want [recent commit object name] group can display firstly after I execute git rebase -i <tab>: image

How can I show [recent commit object name] group display in first order?

eval-exec avatar May 18 '23 09:05 eval-exec

zstyle ':completion:*:complete:git-rebase:*' group-order 'commits' should work in compsys. However, fzf-tab doens't support it right now.

Aloxaf avatar Jun 09 '23 07:06 Aloxaf