-
Hi, I got a truncated result as shown in the following image with my While it's not a big deal in the image(only the last word Sorry that I don't know where to start searching to solve this problem. Could anyone help if you know how to setup the config? Thanks in advance! My Config.require('noice').setup {
lsp = {
-- override markdown rendering so that **cmp** and other plugins use **Treesitter**
override = {
['vim.lsp.util.convert_input_to_markdown_lines'] = true,
['vim.lsp.util.stylize_markdown'] = true,
['cmp.entry.get_documentation'] = true,
},
},
hover = { enabled = true },
signature = { enabled = true },
messages = { view_search = false },
presets = {
lsp_doc_border = true,
long_message_to_split = true,
inc_rename = true,
},
} |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
That doesn't happen for me and can't reproduce. Can you provide a minimal example? https://github.com/folke/noice.nvim/wiki/Minimal-%60init.lua%60-to-Reproduce-an-Issue |
Beta Was this translation helpful? Give feedback.
-
I just found that this is caused by one of my vim.api.nvim_create_autocmd({ 'BufWinEnter' }, {
group = curfile_augroup,
pattern = '*',
callback = function ()
vim.api.nvim_win_set_option(0, 'winhl', '')
-- vim.opt.signcolumn = 'yes' -- comment out this line fix the problem!
end,
}) |
Beta Was this translation helpful? Give feedback.
I just found that this is caused by one of my
autocmd
to prevent thesigncolumn
to disappear by some plugin.