Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(utils): menu:
ui.select
menu has thick bottom border
Bug: `ui.select` menu has improper thick bottom border when header/prompt is given and `opts.menu.win_configs.border` is configured as `{ '', '', '', '' }` (table with 4 elements) Fix: This is because we set the `border[2]` to ' ' (space). so that we have a thick upper border to show the header but the thick border is repeated as the bottom border when then the border table has only 4 elements, see `:h nvim_open_win`. To fix this issue, expand the border table to 8 elements and set the `border[2]` to space.
- Loading branch information