tabpanel: remove scroll suboption handling again
CI / Test (v7.4) (push) Waiting to run
CI / Test (v8.0.0000) (push) Waiting to run
CI / Test (v8.1.0000) (push) Waiting to run
CI / Test (v8.2.0000) (push) Waiting to run
CI / Test (v8.2.1000) (push) Waiting to run
CI / Test (v9.0.0000) (push) Waiting to run
CI / Test (v9.1.0000) (push) Waiting to run
reviewdog / runner / vint (push) Waiting to run

Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
Christian Brabandt
2026-04-27 17:08:33 +00:00
parent f6d9cc6b4a
commit 6e09d725c2
2 changed files with 1 additions and 9 deletions
-3
View File
@@ -106,7 +106,6 @@ def Enable(): void
&tabpanel = '%!airline#extensions#tabpanel#Get()'
var cols = get(g:, 'airline#extensions#tabpanel#columns', 20)
var align = get(g:, 'airline#extensions#tabpanel#align', '')
var scroll = get(g:, 'airline#extensions#tabpanel#scroll', 1)
var scrollbar = get(g:, 'airline#extensions#tabpanel#scrollbar', 1)
var opts = 'columns:' .. cols
if !empty(align)
@@ -115,8 +114,6 @@ def Enable(): void
if mouse_support
if scrollbar
opts ..= ',scrollbar'
elseif scroll
opts ..= ',scroll'
endif
endif
&tabpanelopt = opts