From e57250994e3d8630016176025b853110234a778b Mon Sep 17 00:00:00 2001 From: folke Date: Mon, 22 Jul 2024 08:51:30 +0000 Subject: [PATCH] chore(build): auto-generate docs --- doc/trouble.nvim.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/trouble.nvim.txt b/doc/trouble.nvim.txt index 09d8521c..e89ac88a 100644 --- a/doc/trouble.nvim.txt +++ b/doc/trouble.nvim.txt @@ -1,4 +1,4 @@ -*trouble.nvim.txt* For Neovim Last change: 2024 July 21 +*trouble.nvim.txt* For Neovim Last change: 2024 July 22 ============================================================================== Table of Contents *trouble.nvim-table-of-contents* @@ -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.