-
I realized one could either ask fzf to print the border or delegate this to fzf-lua, are these 2 options doing the same or are implementations different? if they are different, which one should we use from performance perspective? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
These aren't the same, fzf border will be drawn by fzf in the terminal whereas the fzf-lua border is drawn by the neovim floating window itself (the default), I don't think there's a difference in performance but I would use the default (drawn by fzf-lua/neovim), the main 2 reasons are: |
Beta Was this translation helpful? Give feedback.
These aren't the same, fzf border will be drawn by fzf in the terminal whereas the fzf-lua border is drawn by the neovim floating window itself (the default), I don't think there's a difference in performance but I would use the default (drawn by fzf-lua/neovim), the main 2 reasons are:
(1) Ability to set the highlight
FzfLuaBorder
(2) Ability to use the title instead of the prompt (try
:FzfLua profiles
and trydefault-title
orborderless-full
to see the diffe…