commit 96e19533f60add50eea4598560bbd56de3b1fca3
parent 53f30de2becded95f9113b75367a9dd7563c183e
Author: Artyom Andreev <artandra@icloud.com>
Date: Sun, 4 Jun 2023 04:03:25 +0300
feat(lsp): set kind in select call for codelens #23889
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/runtime/lua/vim/lsp/codelens.lua b/runtime/lua/vim/lsp/codelens.lua
@@ -97,6 +97,7 @@ function M.run()
else
vim.ui.select(options, {
prompt = 'Code lenses:',
+ kind = 'codelens',
format_item = function(option)
return option.lens.command.title
end,