-
At present, I have LSPs which, when using I have tried the following but that is not affecting the left hand side. km.set(
"n",
"<leader>cd",
":lua require'fzf-lua'.diagnostics_document({winopts = {preview={wrap='wrap'}}})<cr>",
{ desc = "Document Diagnostics" }
) |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 8 replies
-
Fzf |
Beta Was this translation helpful? Give feedback.
-
@ibhagwan return {
"ibhagwan/fzf-lua",
dependencies = { "nvim-tree/nvim-web-devicons" },
opts = {
["--wrap"] = true,
},
config = function()
require("fzf-lua").setup({
diagnostics = {
multiline = true,
}
})
end
} as you can see they are not wrapped by default :/ |
Beta Was this translation helpful? Give feedback.
Yes, that’s accurate although you can place it inside the setup ( or lazy
opts =
) under diagnostics to apply for both workspace and document diags.