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>
diff --git a/src/Makefile b/src/Makefile
index 962e47b..9a1a1cc 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -1576,6 +1576,7 @@
spellsuggest.c \
strings.c \
syntax.c \
+ tabpanel.c \
tag.c \
term.c \
terminal.c \
@@ -1737,6 +1738,7 @@
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 @@
spellsuggest.pro \
strings.pro \
syntax.pro \
+ tabpanel.pro \
tag.pro \
term.pro \
terminal.pro \
@@ -3547,6 +3550,9 @@
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 @@
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 \