You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 13, 2021. It is now read-only.
Is your feature request related to a problem? Please describe.
While I was developing LSP, I tried to implement completion which is searchable by description(detail in lsp spec).
But with current match strategy, fuzzy, exact, substring, this plugin matcher filters the completion item.
Describe the solution you'd like
Add all match function like this.
local function all_match(prefix, word)
return true
end
local matching_strategy = {
all = all_match,
fuzzy = fuzzy_match,
substring = substring_match,
exact = exact_match
}
I haven't looked at how other server provides completion.
But If LSP already has it's own way of matching strategy, I believe there should be an option for this plugin to not to filter the completion items. Correct me if I'm wrong.
Is your feature request related to a problem? Please describe.
While I was developing LSP, I tried to implement completion which is searchable by description(detail in lsp spec).
But with current match strategy, fuzzy, exact, substring, this plugin matcher filters the completion item.
Describe the solution you'd like
Add all match function like this.
I haven't looked at how other server provides completion.
But If LSP already has it's own way of matching strategy, I believe there should be an option for this plugin to not to filter the completion items. Correct me if I'm wrong.