From 57158678b94b67b6d1f8957abf7040d23b9af25f Mon Sep 17 00:00:00 2001 From: Ben Fowler Date: Sat, 7 Dec 2024 04:08:41 +0000 Subject: [PATCH] FIX: removed '=>' from string literal Not consistent with Telescope plugins' quickfix output from other pickers. Aligning with them for consistency. --- lua/telescope/_extensions/luasnip.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/telescope/_extensions/luasnip.lua b/lua/telescope/_extensions/luasnip.lua index a70f655..e71c86e 100644 --- a/lua/telescope/_extensions/luasnip.lua +++ b/lua/telescope/_extensions/luasnip.lua @@ -129,7 +129,7 @@ M.luasnip_fn = function(opts) value = entry, filename = entry.context.trigger, display = make_display, - text = string.format(" => %s | %s | %s", entry.ft, entry.context.name, entry.context.description[1] or ''), + text = string.format(" %s | %s | %s", entry.ft, entry.context.name, entry.context.description[1] or ''), ordinal = search_fn(entry), preview_command = function(_, bufnr) local snippet = get_docstring(luasnip, entry.ft, entry.context)