diff options
| author | matt rice <ratmice+github@gmail.com> | 2022-05-18 18:10:45 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-18 20:10:45 +0200 |
| commit | 7bc8efd77bc99f8e0bdf49b68f11ba9de731b45c (patch) | |
| tree | 7bb643ff4c5532a943839164df805326c590bda6 /lua | |
| parent | 3cc44f8f0517739f657ff8b39227fe8f07f9443c (diff) | |
docs: reflect behavior of diagnostics bufnr nil (#1879)
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/telescope/builtin/init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/telescope/builtin/init.lua b/lua/telescope/builtin/init.lua index ebbbe69..f930a29 100644 --- a/lua/telescope/builtin/init.lua +++ b/lua/telescope/builtin/init.lua @@ -439,7 +439,7 @@ builtin.lsp_dynamic_workspace_symbols = require_on_exported_call("telescope.buil --- - Default keymaps: --- - `<C-l>`: show autocompletion menu to prefilter your query with the diagnostic you want to see (i.e. `:warning:`) ---@param opts table: options to pass to the picker ----@field bufnr string|number: if nil get diagnostics for all open buffers. Use 0 for current buffer +---@field bufnr number|nil: Buffer number to get diagnostics from. Use 0 for current buffer or nil for all buffers ---@field severity string|number: filter diagnostics by severity name (string) or id (number) ---@field severity_limit string|number: keep diagnostics equal or more severe wrt severity name (string) or id (number) ---@field severity_bound string|number: keep diagnostics equal or less severe wrt severity name (string) or id (number) |
