Skip to content

Commit

Permalink
FIX: removed '=>' from string literal
Browse files Browse the repository at this point in the history
Not consistent with Telescope plugins' quickfix output from other
pickers.  Aligning with them for consistency.
  • Loading branch information
benfowler committed Dec 7, 2024
1 parent 9095ef1 commit 5715867
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/telescope/_extensions/luasnip.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 5715867

Please sign in to comment.