Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 5c04b33

Browse files
author
btstream
committedFeb 25, 2025·
feat(layout): configurable winhighlight options for layout's box_wins
1 parent 4ce197b commit 5c04b33

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed
 

‎lua/snacks/layout.lua

+3
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,9 @@ function M.new(opts)
104104
w = { snacks_layout = true },
105105
border = box.border,
106106
}))
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
107110
end
108111
end
109112
end)

‎lua/snacks/picker/core/picker.lua

-5
Original file line numberDiff line numberDiff line change
@@ -270,11 +270,6 @@ function M:init_layout(layout)
270270
}))
271271
self:attach()
272272

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
278273
return layout
279274
end
280275

0 commit comments

Comments
 (0)
Please sign in to comment.