We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ce197b commit 5c04b33Copy full SHA for 5c04b33
lua/snacks/layout.lua
@@ -104,6 +104,9 @@ function M.new(opts)
104
w = { snacks_layout = true },
105
border = box.border,
106
}))
107
+ if not (box.wo and box.wo.winhighlight) then
108
+ self.box_wins[box.id].opts.wo.winhighlight = Snacks.picker.highlight.winhl("SnacksPickerBox")
109
+ end
110
end
111
112
end)
lua/snacks/picker/core/picker.lua
@@ -270,11 +270,6 @@ function M:init_layout(layout)
270
271
self:attach()
272
273
- -- apply box highlight groups
274
- local boxwhl = Snacks.picker.highlight.winhl("SnacksPickerBox")
275
- for _, win in pairs(self.layout.box_wins) do
276
- win.opts.wo.winhighlight = boxwhl
277
- end
278
return layout
279
280
0 commit comments