This commit is contained in:
hrsh7th
2022-02-13 18:53:30 +09:00
parent bf78446d59
commit 4bc038f72d
3 changed files with 4 additions and 5 deletions

View File

@@ -229,8 +229,8 @@ core.complete_common_string = function(self)
matching = { matching = {
disallow_prefix_unmatching = true, disallow_prefix_unmatching = true,
disallow_partial_matching = true, disallow_partial_matching = true,
disallow_fuzzy_matching = true, disallow_fuzzy_matching = true,
} },
}) })
self:filter() self:filter()

View File

@@ -353,8 +353,8 @@ entry.match = function(self, input, matching_config)
disallow_prefix_unmatching = matching_config.disallow_prefix_unmatching, disallow_prefix_unmatching = matching_config.disallow_prefix_unmatching,
synonyms = { synonyms = {
self:get_word(), self:get_word(),
self:get_completion_item().label self:get_completion_item().label,
} },
} }
local score, matches, _ local score, matches, _

View File

@@ -259,4 +259,3 @@ wildmenu_entries_view._get_separator = function()
end end
return wildmenu_entries_view return wildmenu_entries_view