Refresh generated neovim config
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
*noice.nvim.txt* For Neovim >= 0.8.0 Last change: 2024 May 23
|
||||
*noice.nvim.txt* For Neovim >= 0.8.0 Last change: 2024 June 18
|
||||
|
||||
==============================================================================
|
||||
Table of Contents *noice.nvim-table-of-contents*
|
||||
@ -14,7 +14,9 @@ Table of Contents *noice.nvim-table-of-contents*
|
||||
- Formatting |noice.nvim-noice-(nice,-noise,-notice)-formatting|
|
||||
- Routes |noice.nvim-noice-(nice,-noise,-notice)-routes|
|
||||
- Statusline Components|noice.nvim-noice-(nice,-noise,-notice)-statusline-components|
|
||||
- Pickers |noice.nvim-noice-(nice,-noise,-notice)-pickers|
|
||||
- Telescope |noice.nvim-noice-(nice,-noise,-notice)-telescope|
|
||||
- Fzf Lua |noice.nvim-noice-(nice,-noise,-notice)-fzf-lua|
|
||||
- Usage |noice.nvim-noice-(nice,-noise,-notice)-usage|
|
||||
- Highlight Groups |noice.nvim-noice-(nice,-noise,-notice)-highlight-groups|
|
||||
2. Links |noice.nvim-links|
|
||||
@ -39,7 +41,7 @@ FEATURES *noice.nvim-noice-(nice,-noise,-notice)-features*
|
||||
- fully customizable **cmdline** with icons
|
||||
- **syntax highlighting** for `vim` and `lua` on the **cmdline**
|
||||
- **statusline** components
|
||||
- open message history in telescope.nvim <https://github.com/nvim-telescope/telescope.nvim>
|
||||
- open message history in telescope.nvim <https://github.com/nvim-telescope/telescope.nvim> or fzf-lua <https://github.com/ibhagwan/fzf-lua>
|
||||
|
||||
|
||||
STATUS *noice.nvim-noice-(nice,-noise,-notice)-status*
|
||||
@ -149,7 +151,7 @@ for configuration recipes.
|
||||
filter = { pattern = "^:%s*!", icon = "$", lang = "bash" },
|
||||
lua = { pattern = { "^:%s*lua%s+", "^:%s*lua%s*=%s*", "^:%s*=%s*" }, icon = "", lang = "lua" },
|
||||
help = { pattern = "^:%s*he?l?p?%s+", icon = "" },
|
||||
input = {}, -- Used by input()
|
||||
input = { view = "cmdline_input", icon = " " }, -- Used by input()
|
||||
-- lua = false, -- to disable a format, set to `false`
|
||||
},
|
||||
},
|
||||
@ -309,12 +311,6 @@ for configuration recipes.
|
||||
health = {
|
||||
checker = true, -- Disable if you don't want health checks to run
|
||||
},
|
||||
smart_move = {
|
||||
-- noice tries to move out of the way of existing floating windows.
|
||||
enabled = true, -- you can disable this behaviour here
|
||||
-- add any filetypes here, that shouldn't trigger smart move.
|
||||
excluded_filetypes = { "cmp_menu", "cmp_docs", "notify" },
|
||||
},
|
||||
---@type NoicePresets
|
||||
presets = {
|
||||
-- you can enable a preset by setting it to true, or a table that will override the preset config
|
||||
@ -590,6 +586,8 @@ built-in formats:
|
||||
},
|
||||
telescope = ..., -- formatter used to display telescope results
|
||||
telescope_preview = ..., -- formatter used to preview telescope results
|
||||
fzf = ..., -- formatter used to display fzf results
|
||||
fzf_preview = ..., -- formatter used to preview fzf results
|
||||
lsp_progress = ..., -- formatter used by lsp progress
|
||||
lsp_progress_done = ..., -- formatter used by lsp progress
|
||||
}
|
||||
@ -708,6 +706,12 @@ Example of configuring lualine.nvim ~
|
||||
<
|
||||
|
||||
|
||||
PICKERS *noice.nvim-noice-(nice,-noise,-notice)-pickers*
|
||||
|
||||
For convenience, you can do `:Noice pick`, which will open a picker with all
|
||||
the messages in the history, either with `telescope` or `fzf-lua`.
|
||||
|
||||
|
||||
TELESCOPE *noice.nvim-noice-(nice,-noise,-notice)-telescope*
|
||||
|
||||
In order to use **Noice** in **Telescope**, you can either do `:Noice
|
||||
@ -720,6 +724,13 @@ formatted with `config.format.formatters.telescope_preview`
|
||||
<
|
||||
|
||||
|
||||
FZF LUA *noice.nvim-noice-(nice,-noise,-notice)-fzf-lua*
|
||||
|
||||
In order to use **Noice** in **FzfLua**, you can do `:Noice fzf`. The results
|
||||
panel is formatted using `config.format.formatters.fzf`. The preview is
|
||||
formatted with `config.format.formatters.telescope_fzf`
|
||||
|
||||
|
||||
USAGE *noice.nvim-noice-(nice,-noise,-notice)-usage*
|
||||
|
||||
- `:Noice` or `:Noice history` shows the message history
|
||||
|
||||
Reference in New Issue
Block a user