patch 9.1.1391: Vim does not have a vertical tabpanel

Problem:  Vim does not have a tabpanel
Solution: include the tabpanel feature
          (Naruhiko Nishino, thinca)

closes: #17263

Co-authored-by: thinca <thinca@gmail.com>
Signed-off-by: Naruhiko Nishino <naru123456789@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
Naruhiko Nishino
2025-05-14 21:20:28 +02:00
committed by Christian Brabandt
parent 7200eae212
commit be5bd4d629
100 changed files with 2314 additions and 164 deletions

View File

@ -1576,6 +1576,7 @@ BASIC_SRC = \
spellsuggest.c \
strings.c \
syntax.c \
tabpanel.c \
tag.c \
term.c \
terminal.c \
@ -1737,6 +1738,7 @@ OBJ_COMMON = \
objects/spellsuggest.o \
objects/strings.o \
objects/syntax.o \
objects/tabpanel.o \
objects/tag.o \
objects/term.o \
objects/terminal.o \
@ -1930,6 +1932,7 @@ PRO_AUTO = \
spellsuggest.pro \
strings.pro \
syntax.pro \
tabpanel.pro \
tag.pro \
term.pro \
terminal.pro \
@ -3547,6 +3550,9 @@ objects/strings.o: strings.c
objects/syntax.o: syntax.c
$(CCC) -o $@ syntax.c
objects/tabpanel.o: tabpanel.c
$(CCC) -o $@ tabpanel.c
objects/tag.o: tag.c
$(CCC) -o $@ tag.c
@ -4214,6 +4220,11 @@ objects/syntax.o: syntax.c vim.h protodef.h auto/config.h feature.h os_unix.h \
proto/gui_beval.pro structs.h regexp.h gui.h libvterm/include/vterm.h \
libvterm/include/vterm_keycodes.h alloc.h ex_cmds.h spell.h proto.h \
globals.h errors.h
objects/tabpanel.o: tabpanel.c vim.h protodef.h auto/config.h feature.h os_unix.h \
auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
proto/gui_beval.pro structs.h regexp.h gui.h \
libvterm/include/vterm_keycodes.h alloc.h ex_cmds.h spell.h proto.h \
globals.h errors.h
objects/tag.o: tag.c vim.h protodef.h auto/config.h feature.h os_unix.h \
auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
proto/gui_beval.pro structs.h regexp.h gui.h libvterm/include/vterm.h \