0
0
mirror of https://github.com/vim/vim.git synced 2025-10-23 08:44:20 -04:00

patch 9.1.1461: tabpanel: tabpanel vanishes with popup menu

Problem:  tabpanel: tabpanel vanishes with popup menu
Solution: remove pum-related test in tabpanel_leftcol(), refactor a few
          related functions (Hirohito Higashi)

This commit does the following:
- Delete unnecessary pum-related checks in the tabpanel_leftcol()
  function
- remove pum-related check in tabpanel_leftcol()
- The argument of the TPL_LCOL() macro has been deleted.
- The argument of the tabpanel_leftcol() function has been changed
  to void
- The return type of the `win_comp_pos()` function has been changed to
  void

closes: #17549

Signed-off-by: Hirohito Higashi <h.east.727@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
Hirohito Higashi
2025-06-16 19:39:24 +02:00
committed by Christian Brabandt
parent e5297e39b3
commit e5c96e344c
10 changed files with 71 additions and 26 deletions

View File

@@ -921,10 +921,10 @@ extern int (*dyn_libintl_wputenv)(const wchar_t *envstring);
#if defined(FEAT_TABPANEL)
# define COLUMNS_WITHOUT_TPL() (Columns - tabpanel_width())
# define TPL_LCOL(W) tabpanel_leftcol(W)
# define TPL_LCOL() tabpanel_leftcol()
#else
# define COLUMNS_WITHOUT_TPL() Columns
# define TPL_LCOL(W) 0
# define TPL_LCOL() 0
#endif
#define W_ENDCOL(wp) ((wp)->w_wincol + (wp)->w_width)