You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 18, 2023. It is now read-only.
There is an issue where other lualine components configured to render before tabline's tab component leads to incorrect whitespace:
There should not be any padding/whitespace between 📌 tabline-plugin | and the tab component on the far right. Below is what it is supposed to look like:
This was done by changing M.format_tabs() to remove the %= separation status item:
functionM.format_tabs(tabs, max_length)
...M.total_tab_length=total_lengthifM.options.show_tabs_alwaysthenline="%#TabLineFill#%999X" ..line<--- Removed %= from the startelseif#tabs==1andtabs[1].name~="1 " thenline="%#TabLineFill#%999X" ..line<--- Removed %= from the startelseif#tabs>1thenline="%#TabLineFill#%999X" ..line<--- Removed %= from the startelseline="%#TabLineFill#%999X" <--- Removed %= from the startM.total_tab_length=0endreturnlineend
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When using the tabs component in
lualine.nvim
like so:There is an issue where other lualine components configured to render before tabline's tab component leads to incorrect whitespace:
There should not be any padding/whitespace between
📌 tabline-plugin |
and the tab component on the far right. Below is what it is supposed to look like:This was done by changing
M.format_tabs()
to remove the%=
separation status item:The text was updated successfully, but these errors were encountered: