From d6a5edd6136438d594c535f1ad6635768640331a Mon Sep 17 00:00:00 2001 From: RestorerZ Date: Sun, 6 Jul 2025 20:17:36 +0200 Subject: [PATCH] runtime(optwin): add missing values for tabpanel option closes: #17685 Signed-off-by: RestorerZ Signed-off-by: Christian Brabandt --- runtime/optwin.vim | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/runtime/optwin.vim b/runtime/optwin.vim index 91974570ec..0158f9775d 100644 --- a/runtime/optwin.vim +++ b/runtime/optwin.vim @@ -1,7 +1,7 @@ " These commands create the option window. " " Maintainer: The Vim Project -" Last Change: 2025 Jul 02 +" Last Change: 2025 Jul 05 " Former Maintainer: Bram Moolenaar " If there already is an option window, jump to that one. @@ -1472,8 +1472,11 @@ if exists("&mzschemedll") endif if has("tabpanel") call AddOption("showtabpanel", gettext("0, 1 or 2; when to use the tabpanel")) + call OptionG("showtabpanel", &showtabpanel) call AddOption("tabpanel", gettext("custom tab pages in tabpanel")) + call OptionG("tabpanel", &tabpanel) call AddOption("tabpanelopt", gettext("options for using tabpanel")) + call OptionG("tabpanelopt", &tabpanelopt) endif set cpo&vim