cmdline/popmenu recipe not working quite right for me #607
Unanswered
willdavidow
asked this question in
Q&A
Replies: 1 comment
-
I also had this issue so instead of setting the preset noice.setup({
-- other config opts here ...
views = {
cmdline_popup = {
position = {
row = "40%",
col = "50%",
},
size = {
width = 60,
height = "auto",
},
win_options = {
winhighlight = {
Normal = "Normal",
FloatBorder = "DiagnosticInfo",
FloatTitle = "DiagnosticInfo",
},
},
},
popupmenu = {
border = {
},
relative = "editor",
position = {
row = "55%",
col = "50%",
},
size = {
width = 60,
height = 12, --you can set this to any height, even "auto", depending on your preference
},
win_options = {
winblend = 0,
winhighlight = {
Normal = "Normal",
FloatBorder = "DiagnosticInfo",
},
},
},
},
-- other config opts here ...
}) With this setup I do still have the issue of the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm attempting to set up the cmdline + popmenu like the example in the configuration receipes section.
https://github.com/folke/noice.nvim/wiki/Configuration-Recipes#display-the-cmdline-and-popupmenu-together
I copy-pasted that to my
noice
config and it displays, it just doesn't look quite right.I imagine I've got some setting in my
cmp
setup that is overriding what it should look like, but I'm not able to find it. Here's what I'm seeing:Here's my full noice and cmp configs in case that helps troubleshoot:
cmp.lua
noice.lua
Beta Was this translation helpful? Give feedback.
All reactions