Skip to content
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

Bug: flickering / blinking when globalstatus = true #1220

Open
2 tasks done
sand4rt opened this issue Mar 27, 2024 · 1 comment
Open
2 tasks done

Bug: flickering / blinking when globalstatus = true #1220

sand4rt opened this issue Mar 27, 2024 · 1 comment
Labels
bug Something isn't working

Comments

@sand4rt
Copy link

sand4rt commented Mar 27, 2024

Self Checks

  • I'm using the latest lualine.
  • I didn't find the issue in existing issues or PRs.

How to reproduce the problem

Toggle telescope when lualine globalstatus = true

Expected behaviour

Lualine not to flicker / blink when toggling telescope and other plugins like neotree, undotree and so on:

test.mov

Actual behaviour

Lualine flickers / blinks (hides and shows quickly) when toggling telescope and other plugins like neotree and undotree

Minimal config to reproduce the issue

-- lualine.lua
return {
    "nvim-lualine/lualine.nvim",
    lazy = false,
    dependencies = { "nvim-tree/nvim-web-devicons", opt = true },
    config = function()
        require("lualine").setup({
            options = {
                theme = 'base16',
                icons_enabled = true,
                component_separators = { left = '', right = '' },
                section_separators = { left = '', right = '' },
                disabled_filetypes = {
                    statusline = {},
                    winbar = {},
                },
                ignore_focus = {},
                always_divide_middle = true,
                globalstatus = true,
                refresh = {
                    statusline = 1000,
                    tabline = 1000,
                    winbar = 1000,
                }
            },
        })
    end,
}
-- telescope.lua
return {
    "nvim-telescope/telescope.nvim",
    version = "0.1.x",
    dependencies = {
        "nvim-lua/plenary.nvim",
    },
    keys = {
        {
            "<leader> ",
            "<cmd>Telescope find_files<cr>",
            silent = true
        },
    },
    config = function()
        require("telescope").setup({})
    end,
}
@sand4rt sand4rt added the bug Something isn't working label Mar 27, 2024
wochap added a commit to wochap/nvim that referenced this issue Apr 13, 2024
wochap added a commit to wochap/nvim that referenced this issue Apr 13, 2024
@sand4rt
Copy link
Author

sand4rt commented May 30, 2024

probably related to: #774

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant