From 5fc86a5c6565d45d46b08a0924098c7989512474 Mon Sep 17 00:00:00 2001 From: 409 <409dev@protonmail.com> Date: Fri, 20 Jun 2025 19:50:49 +0200 Subject: [PATCH] blink show import source --- lua/409/plugins/completion.lua | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/lua/409/plugins/completion.lua b/lua/409/plugins/completion.lua index 0d1c4f2..217744c 100644 --- a/lua/409/plugins/completion.lua +++ b/lua/409/plugins/completion.lua @@ -72,9 +72,14 @@ return { border = "single", draw = { padding = 2, - columns = { { "kind_icon" }, { "label" }, { "kind" } }, - + columns = { { "kind_icon" }, { "label" }, { "label_description" }, { "kind" } }, components = { + label_description = { + width = { max = 50 }, + text = function(ctx) + return ctx.label_detail + end, + }, kind = { text = function(ctx) return "(" .. ctx.kind .. ")"