How to get the default neovim cmdline? #1275
-
|
Hello, I've trying to change the noice.nvim cmdline to regular neovim cmdline. Here's what I've tried, -- plugins/noice.lua
return {
"folke/noice.nvim",
event = "VeryLazy",
opts = function()
return {
cmdline = {
enabled = false, -- enables the Noice cmdline UI
view = "cmdline", -- view for rendering the cmdline. Change to `cmdline` to get a classic cmdline at the bottom
}
}
end
}This completely removes the cmdline from the view but the command does get inputed. If I set |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Try this {
"folke/noice.nvim",
opts = {
cmdline = {
enabled = false,
},
messages = {
enabled = false,
},
},
},It states in the docs
Edit: actual answer taken from this noice issue. |
Beta Was this translation helpful? Give feedback.
Try this
{ "folke/noice.nvim", opts = { cmdline = { enabled = false, }, messages = { enabled = false, }, }, },It states in the docs
Edit: actual answer taken from this noice issue.