" These commands create the option window.
"
" Maintainer: The Vim Project <https://github.com/vim/vim>
-" Last Change: 2025 Jul 02
+" Last Change: 2025 Jul 05
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" If there already is an option window, jump to that one.
endif
if has("tabpanel")
call <SID>AddOption("showtabpanel", gettext("0, 1 or 2; when to use the tabpanel"))
+ call <SID>OptionG("showtabpanel", &showtabpanel)
call <SID>AddOption("tabpanel", gettext("custom tab pages in tabpanel"))
+ call <SID>OptionG("tabpanel", &tabpanel)
call <SID>AddOption("tabpanelopt", gettext("options for using tabpanel"))
+ call <SID>OptionG("tabpanelopt", &tabpanelopt)
endif
set cpo&vim