feat(statusline): add custom separator between segments#678
Open
Kayzels wants to merge 2 commits intofolke:mainfrom
Open
feat(statusline): add custom separator between segments#678Kayzels wants to merge 2 commits intofolke:mainfrom
Kayzels wants to merge 2 commits intofolke:mainfrom
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
In the
statuslinefunction for the renderer, the code indicated that a separator should be able to be passed in, which would then separate the different components.However, it was only ever called in the API statusline code, with
status = renderer:statusline(). So, there was no way to add the separator.This PR adds
sepas an optional field for the API statusline code, and passes that value through to the renderer.It also removes the trailing empty string that means that there was always the separator, even when there was only one item showing.
Screenshots
These were done with this config set for lualine (just the trouble.nvim winbar component)
{ "nvim-lualine/lualine.nvim", opts = function(_, opts) local trouble = require("trouble") local symbols = trouble.statusline({ mode = "symbols", groups = {}, title = false, filter = { range = true }, format = "{kind_icon}{symbol.name:Normal}", sep = " ", }) opts.winbar.lualine_b = { { symbols and symbols.get, cond = function() return vim.b.trouble_lualine ~= false and symbols.has() end, }, } end }