From eb3c3d86a631d150555ec016cf7feca892584a12 Mon Sep 17 00:00:00 2001 From: bekaboo <18127878294@qq.com> Date: Wed, 24 Jan 2024 01:19:33 +0800 Subject: [PATCH] fix(menu): `col` field missing in fzf window config --- lua/dropbar/menu.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/dropbar/menu.lua b/lua/dropbar/menu.lua index 803be406..993d18f8 100644 --- a/lua/dropbar/menu.lua +++ b/lua/dropbar/menu.lua @@ -956,7 +956,7 @@ function dropbar_menu_t:fuzzy_find_open(opts) end -- make sure that fzf window aligns well with menu window - win_config.col = has_left_border and -1 or nil + win_config.col = has_left_border and -1 or 0 win_config.row = self._win_configs.height + (has_bottom_border and 1 or 0) -- don't show title in the fzf window