-
I really like fzf-lua. However, how can I remove the serial number in front of each item and make items aligned? Or, can I keep the serial number and make items aligned? |
Beta Was this translation helpful? Give feedback.
Answered by
zhiim
Jan 7, 2025
Replies: 1 comment 3 replies
-
:lua require("fzf-lua").register_ui_select({fzf_opts={["--delimiter"]=".",["--with-nth"]="2.."}}) |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for your answer. It works to remove serial number by setting this
By the way, if the serial number is passed to
format_item
likeformat_item(i, e)
, then I can keep the number and format items to aligned.fzf-lua/lua/fzf-lua/providers/ui_select.lua
Line 82 in 87eff1a