1

Refresh generated neovim config

This commit is contained in:
2024-08-15 13:01:03 +02:00
parent 64b51cf53a
commit f5af8e2b28
1836 changed files with 38979 additions and 31094 deletions

View File

@ -1,4 +1,4 @@
*trouble.nvim.txt* For Neovim >= 0.8.0 Last change: 2024 June 14
*trouble.nvim.txt* For Neovim Last change: 2024 July 22
==============================================================================
Table of Contents *trouble.nvim-table-of-contents*
@ -176,7 +176,7 @@ Default Settings ~
},
-- Key mappings can be set to the name of a builtin action,
-- or you can define your own custom action.
---@type table<string, trouble.Action.spec>
---@type table<string, trouble.Action.spec|false>
keys = {
["?"] = "help",
r = "refresh",
@ -352,16 +352,16 @@ Some examples:
- `Trouble diagnostics toggle focus=false filter.buf=0`
- Show document symbols on the right of the current window.
Keep the document symbols in sync with the buffer you started the command in.
- `Trouble symbols toggle pinned=true results.win.relative=win results.win.position=right`
- `Trouble symbols toggle pinned=true win.relative=win win.position=right`
- You can use **lua** code in the options for the `Trouble` command.
The examples below all do the same thing.
- `Trouble diagnostics filter.severity=vim.diagnostic.severity.ERROR`
- `Trouble diagnostics filter.severity = vim.diagnostic.severity.ERROR`
- `Trouble diagnostics filter = { severity=vim.diagnostic.severity.ERROR }`
- Merging of nested options, with or without quoting strings:
- `Trouble diagnostics results.win.type = split result.win.position=right`
- `Trouble diagnostics results.win = { type = split, position=right}`
- `Trouble diagnostics results.win = { type = "split", position='right'}`
- `Trouble diagnostics win.type = split win.position=right`
- `Trouble diagnostics win = { type = split, position=right}`
- `Trouble diagnostics win = { type = "split", position='right'}`
Please refer to the API section for more information on the available actions
and options.