Skip to content

Commit 6ce221e

Browse files
committed
fix wrong table
1 parent 85bba3f commit 6ce221e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/phoenix/init.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -546,7 +546,7 @@ function Snippet:get_completions(prefix)
546546
local snippet_prefix = type(snippet_data.prefix) == 'string' and { snippet_data.prefix }
547547
or snippet_data.prefix
548548
if
549-
snippet_prefix_match(snippet_data.prefix)
549+
snippet_prefix_match(snippet_prefix)
550550
or (
551551
vim.o.completeopt:find('fuzzy')
552552
and next(vim.fn.matchfuzzy({ snippet_prefix }, prefix:lower())) ~= nil

0 commit comments

Comments
 (0)