-
Hello. I wanted to know if it was possible to hide the action help string from the search panel ? I find it a bit distracting. ![]() Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 11 replies
-
You can remove all headers by setting |
Beta Was this translation helpful? Give feedback.
-
Hello, on the opposite end I want to have the header, especially for live_grep, but when setting it up like so, I have the header appear on everything else except live_grep, not sure what I am doing wrong: config = function()
require("fzf-lua").setup({
fzf_opts = {
["--header"] = ":: <alt-h> to Include hidden files | <alt-i> to Disable .gitignore | <ctrl-g> to Fuzzy Search",
},
vim.api.nvim_set_keymap("n", "<leader>ff", ":FzfLua files<CR>", { desc = "fzf files" }),
vim.api.nvim_set_keymap("n", "<leader>fg", ":FzfLua live_grep<CR>", { desc = "fzf grep" }),
vim.api.nvim_set_keymap("n", "<leader>fb", ":FzfLua buffers<CR>", { desc = "fzf buffers" }),
vim.api.nvim_set_keymap("n", "<leader>fh", ":FzfLua helptags<CR>", { desc = "fzf helptags" }),
})
end, |
Beta Was this translation helpful? Give feedback.
You can remove all headers by setting
header = false
under the right picker options or directly in the call:FzfLua live_grep header=false
or useno_header_i=true
to remove only the “interactive” headers.