116
116
--- @field direction_priority ? (" n" | " s" )[]
117
117
--- @field auto_show ? boolean
118
118
--- @field selection ? " preselect" | " manual" | " auto_insert"
119
+ --- @field winblend ? number
119
120
--- @field winhighlight ? string
120
121
--- @field scrolloff ? number
121
122
--- @field draw ? ' simple' | ' reversed' | ' minimal' | blink.cmp.CompletionDrawFn
141
142
--- @field auto_show ? boolean
142
143
--- @field auto_show_delay_ms ? number Delay before showing the documentation window
143
144
--- @field update_delay_ms ? number Delay before updating the documentation window
145
+ --- @field winblend ? number
144
146
--- @field winhighlight ? string
145
147
146
148
--- @class blink.cmp.SignatureHelpConfig
147
149
--- @field min_width ? number
148
150
--- @field max_width ? number
149
151
--- @field max_height ? number
150
152
--- @field border ? blink.cmp.WindowBorder
153
+ --- @field winblend ? number
151
154
--- @field winhighlight ? string
152
155
--- @field direction_priority ? (" n" | " s" )[]
153
156
@@ -363,6 +366,7 @@ local config = {
363
366
min_width = 15 ,
364
367
max_height = 10 ,
365
368
border = ' none' ,
369
+ winblend = 0 ,
366
370
winhighlight = ' Normal:BlinkCmpMenu,FloatBorder:BlinkCmpMenuBorder,CursorLine:BlinkCmpMenuSelection,Search:None' ,
367
371
-- keep the cursor X lines away from the top/bottom of the window
368
372
scrolloff = 2 ,
@@ -397,6 +401,7 @@ local config = {
397
401
max_width = 80 ,
398
402
max_height = 20 ,
399
403
border = ' padded' ,
404
+ winblend = 0 ,
400
405
winhighlight = ' Normal:BlinkCmpDoc,FloatBorder:BlinkCmpDocBorder,CursorLine:BlinkCmpDocCursorLine,Search:None' ,
401
406
-- which directions to show the documentation window,
402
407
-- for each of the possible autocomplete window directions,
@@ -415,6 +420,7 @@ local config = {
415
420
max_width = 100 ,
416
421
max_height = 10 ,
417
422
border = ' padded' ,
423
+ winblend = 0 ,
418
424
winhighlight = ' Normal:BlinkCmpSignatureHelp,FloatBorder:BlinkCmpSignatureHelpBorder' ,
419
425
420
426
-- which directions to show the window,
0 commit comments