Skip to content

Commit

Permalink
fix(fzf): hover highlighting of last entry in fzf (#91)
Browse files Browse the repository at this point in the history
  • Loading branch information
willothy authored Sep 26, 2023
1 parent 8da1555 commit 044dbc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/dropbar/configs.lua
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ M.opts = {
mouse.winid ~= menu.win
or mouse.line <= 0
or mouse.column <= 0
or mouse.winrow > #menu.entries
or mouse.winrow > (#menu.entries + 1)
then
-- Find the root menu
while menu and menu.prev_menu do
Expand Down

0 comments on commit 044dbc7

Please sign in to comment.