diff --git a/doc/telescope.txt b/doc/telescope.txt index bf4c55c..c29c00d 100644 --- a/doc/telescope.txt +++ b/doc/telescope.txt @@ -1646,28 +1646,31 @@ builtin.diagnostics({opts}) *telescope.builtin.diagnostics()* {opts} (table) options to pass to the picker Options: ~ - {bufnr} (number|nil) Buffer number to get diagnostics - from. Use 0 for current buffer or - nil for all buffers - {severity} (string|number) filter diagnostics by severity name - (string) or id (number) - {severity_limit} (string|number) keep diagnostics equal or more - severe wrt severity name (string) - or id (number) - {severity_bound} (string|number) keep diagnostics equal or less - severe wrt severity name (string) - or id (number) - {root_dir} (string|boolean) if set to string, get diagnostics - only for buffers under this dir - otherwise cwd - {no_unlisted} (boolean) if true, get diagnostics only for - listed buffers - {no_sign} (boolean) hide DiagnosticSigns from Results - (default: false) - {line_width} (number) set length of diagnostic entry text - in Results - {namespace} (number) limit your diagnostics to a - specific namespace + {bufnr} (number|nil) Buffer number to get + diagnostics from. Use 0 for + current buffer or nil for all + buffers + {severity} (string|number) filter diagnostics by severity + name (string) or id (number) + {severity_limit} (string|number) keep diagnostics equal or more + severe wrt severity name + (string) or id (number) + {severity_bound} (string|number) keep diagnostics equal or less + severe wrt severity name + (string) or id (number) + {root_dir} (string|boolean) if set to string, get + diagnostics only for buffers + under this dir otherwise cwd + {no_unlisted} (boolean) if true, get diagnostics only + for listed buffers + {no_sign} (boolean) hide DiagnosticSigns from + Results (default: false) + {line_width} (number) set length of diagnostic entry + text in Results + {namespace} (number) limit your diagnostics to a + specific namespace + {disable_coordinates} (boolean) don't show the line & row + numbers (default: false) diff --git a/lua/telescope/builtin/init.lua b/lua/telescope/builtin/init.lua index 922aea4..0ce08b3 100644 --- a/lua/telescope/builtin/init.lua +++ b/lua/telescope/builtin/init.lua @@ -485,6 +485,7 @@ builtin.lsp_dynamic_workspace_symbols = require_on_exported_call("telescope.buil ---@field no_sign boolean: hide DiagnosticSigns from Results (default: false) ---@field line_width number: set length of diagnostic entry text in Results ---@field namespace number: limit your diagnostics to a specific namespace +---@field disable_coordinates boolean: don't show the line & row numbers (default: false) builtin.diagnostics = require_on_exported_call("telescope.builtin.__diagnostics").get local apply_config = function(mod) diff --git a/lua/telescope/make_entry.lua b/lua/telescope/make_entry.lua index 928612b..a248381 100644 --- a/lua/telescope/make_entry.lua +++ b/lua/telescope/make_entry.lua @@ -1152,8 +1152,15 @@ function make_entry.gen_from_diagnostics(opts) return signs end)() + local sign_width + if opts.disable_coordinates then + sign_width = signs ~= nil and 2 or 0 + else + sign_width = signs ~= nil and 10 or 8 + end + local display_items = { - { width = signs ~= nil and 10 or 8 }, + { width = sign_width }, { remaining = true }, } local line_width = vim.F.if_nil(opts.line_width, 0.5) @@ -1171,8 +1178,9 @@ function make_entry.gen_from_diagnostics(opts) -- add styling of entries local pos = string.format("%4d:%2d", entry.lnum, entry.col) + local line_info_text = signs and signs[entry.type] .. " " or "" local line_info = { - (signs and signs[entry.type] .. " " or "") .. pos, + opts.disable_coordinates and line_info_text or line_info_text .. pos, "DiagnosticSign" .. entry.type, }