feat: add option to configure width of items in gen_from_lsp_symbols() (#812)

This commit is contained in:
Tom Praschan
2021-05-08 13:43:38 +02:00
committed by GitHub
parent 144c761e03
commit 1408e3bbb7

View File

@@ -339,8 +339,8 @@ function make_entry.gen_from_lsp_symbols(opts)
local bufnr = opts.bufnr or vim.api.nvim_get_current_buf()
local display_items = {
{ width = 25 }, -- symbol
{ width = 8 }, -- symbol type
{ width = opts.symbol_width or 25 }, -- symbol
{ width = opts.symbol_type_width or 8 }, -- symbol type
{ remaining = true }, -- filename{:optional_lnum+col} OR content preview
}