File tree 2 files changed +2
-2
lines changed
lua/blink/cmp/sources/lib
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 217
217
218
218
--- For external integrations to force reloading the source
219
219
function sources .reload ()
220
- for _ , source in ipairs (sources .providers ) do
220
+ for _ , source in pairs (sources .providers ) do
221
221
source :reload ()
222
222
end
223
223
end
Original file line number Diff line number Diff line change 13
13
--- @field resolve fun ( self : blink.cmp.SourceProvider , item : blink.cmp.CompletionItem ): blink.cmp.Task
14
14
--- @field get_signature_help_trigger_characters fun ( self : blink.cmp.SourceProvider ): string[]
15
15
--- @field get_signature_help fun ( self : blink.cmp.SourceProvider , context : blink.cmp.SignatureHelpContext ): blink.cmp.Task
16
- --- @field reload (fun ( self : blink.cmp.Source ): nil ) | nil
16
+ --- @field reload (fun ( self : blink.cmp.SourceProvider ): nil ) | nil
17
17
18
18
--- @type blink.cmp.SourceProvider
19
19
--- @diagnostic disable-next-line : missing-fields
You can’t perform that action at this time.
0 commit comments