From: RestorerZ Date: Sun, 6 Jul 2025 18:17:36 +0000 (+0200) Subject: runtime(optwin): add missing values for tabpanel option X-Git-Tag: v9.1.1518~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d6a5edd6136438d594c535f1ad6635768640331a;p=thirdparty%2Fvim.git runtime(optwin): add missing values for tabpanel option closes: #17685 Signed-off-by: RestorerZ Signed-off-by: Christian Brabandt --- 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