gmr458 / vscode_modern_theme.nvim

VSCode Modern theme port for Neovim, Dark & Light versions
39 stars 4 forks source link

Lualine filled with carets #2

Closed PeterShaws closed 9 months ago

PeterShaws commented 9 months ago

If I set this colorscheme, my Lualine for the active window gets filled with carets (^). Please see the attached screenshot. The version info is this:

$ nvim --version
# NVIM v0.9.5
# Build type: Release
# LuaJIT 2.1.1702233742

Screenshot from 2024-02-08 13-42-08

PeterShaws commented 9 months ago

Turns out this is standard Vim behavior ¹ ²:

                            hl-StatusLine
StatusLine  Status line of current window.
                            hl-StatusLineNC
StatusLineNC    status lines of not-current windows.
        Note: If this is equal to "StatusLine", Vim will use "^^^" in
        the status line of the current window.

There’s a potential workaround here.


¹ https://vimhelp.org/syntax.txt.html#hl-StatusLine ² https://vi.stackexchange.com/a/15894