Closed ernstwi closed 4 months ago
Issue: opts.hide.winbar doesn't work
opts.hide.winbar
Seems like a buffer-local value of winbar = '' doesn't override a global non-empty winbar value. To see this:
winbar = ''
nvim --clean set winbar=foo split setlocal winbar=
This PR changes opts.hide.winbar to use save_user_options/set_ui_options/restore_user_options.
save_user_options
set_ui_options
restore_user_options
Issue:
opts.hide.winbar
doesn't workSeems like a buffer-local value of
winbar = ''
doesn't override a global non-empty winbar value. To see this:This PR changes
opts.hide.winbar
to usesave_user_options
/set_ui_options
/restore_user_options
.