-
Notifications
You must be signed in to change notification settings - Fork 84
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
v2.0.0 Tracking Issue #394
Comments
i like the changes on setup, i think is worth |
I think we should aim to have a gradual non-breaking migration, until the last step of the process. 1. We should also mark our commit as breaking with the conventional commits notation ( |
I'm cool with the bufferline => barbar rename as well, but let's try to migrate gradually as well. |
Thanks for the feedback. I'll keep this issue updated the transition can be monitlred item-by-item at a glance |
+1 on the neovim version upper from my side. Would adding a formatting standard / config that can be automated be something for that version release? Could be edit: Just saw there is #411 |
In #386, there was discussion of breaking compatibility with
^1.0.0
by removing support forg:bufferline
. This issue is to track what changes we are looking to make for a potential v2 release.plugin/barbar.lua
to enable lazy-loadingg:bufferline
. We can usedictwatcher
s to deprecate itg:bufferline
#396g:bufferline
deprecation notice even though callingbufferline.setup
#399utils.deprecate
(e.g.state.set_offset
, theicon_close_tab
option).setup
. We don't actually have to do this, but it's worth considering:exclude_name
,exclude_ft
→hide = {name = {}, ft = {}}
highlight_alternate
,highlight_inactive_file_icons
,highlight_visible
→highlight = {alternate = …, inactive_file_icons = …, visible = …}
insert_at_start
,insert_at_end
→insert_at = 'left'|'right'|'start'|'end'
maximum_padding
,minimum_padding
→padding = {maximum = …, minimum = …}
maximum_length
,no_name_title
→filename = {maximum_length = …, default = …}
bufferline#render
require('bufferline')
: Removebufferline
folder #535The text was updated successfully, but these errors were encountered: