From 175d86172b38fb3554253570b8984ea4ec1bd477 Mon Sep 17 00:00:00 2001 From: Andrii Savytskyi Date: Thu, 15 Sep 2022 16:14:33 +0300 Subject: [PATCH] Add space between idx and text in ordinal --- lua/dressing/select/telescope.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/dressing/select/telescope.lua b/lua/dressing/select/telescope.lua index a3b753b..2861b39 100644 --- a/lua/dressing/select/telescope.lua +++ b/lua/dressing/select/telescope.lua @@ -37,7 +37,7 @@ M.custom_kind = { display = make_display, text = text, client_name = client_name, - ordinal = idx .. "" .. text .. " " .. client_name, + ordinal = idx .. " " .. text .. " " .. client_name, value = item, }) end