diff --git a/doc/noice.nvim.txt b/doc/noice.nvim.txt index 4f4afcb..0da2945 100644 --- a/doc/noice.nvim.txt +++ b/doc/noice.nvim.txt @@ -90,18 +90,19 @@ for configuration recipes. cmdline = { enabled = true, -- enables the Noice cmdline UI view = "cmdline_popup", -- view for rendering the cmdline. Change to `cmdline` to get a classic cmdline at the bottom - opts = { lang = "vim" }, -- enable syntax highlighting in the cmdline + opts = {}, -- extra opts for the cmdline view. See section on views ---@type table format = { -- conceal: (default=true) This will hide the text in the cmdline that matches the pattern. -- view: (default is cmdline view) -- opts: any options passed to the view -- icon_hl_group: optional hl_group for the icon - cmdline = { pattern = "^:", icon = "" }, + cmdline = { pattern = "^:", icon = "", lang = "vim" }, search_down = { kind = "search", pattern = "^/", icon = " ", lang = "regex" }, search_up = { kind = "search", pattern = "^%?", icon = " ", lang = "regex" }, - filter = { pattern = "^:%s!", icon = "$", lang = "sh" }, + filter = { pattern = "^:%s!", icon = "$", lang = "bash" }, lua = { pattern = "^:%slua%s+", icon = "", lang = "lua" }, + help = { pattern = "^:%sh%s+", icon = "" }, -- lua = false, -- to disable a format, set to `false` }, },