bluz71 / vim-nightfly-colors

A dark midnight theme for modern Neovim & classic Vim
MIT License
828 stars 51 forks source link

[BUG] When used with feline.nvim, the status line is displayed incorrectly when the window is split. #28

Closed uga-rosa closed 3 years ago

uga-rosa commented 3 years ago

When used in conjunction with feline.nvim, the blank area in the status line becomes ^^^^^^^^ when splitting the window.

image

This is minimal config.

init.vim

call plug#begin('/tmp/plugged')
Plug 'famiu/feline.nvim'
Plug 'bluz71/vim-nightfly-guicolors'
call plug#end()

lua require("feline").setup()

set termguicolors
colorscheme nightfly
bluz71 commented 3 years ago

Sorry for the late response, been very busy lately.

Anyway, If I comment out StatusLineNC the problem goes away. Except, StatusLineNC is a required highlight group (for my theme) and it is legitimately set as far as I can tell.

If I switch over to the Embark colorscheme the same issue will result:

Embark

Hence, I believe the issue is with the feline plugin. I suggest opening up an issue with the feline maintainers, since it likely effects any colorscheme that sets StatusLineNC.

Closing here.

Best regards.

uga-rosa commented 3 years ago

Thank you for looking into the cause!

bluz71 commented 3 years ago

No problem.

Hopefully the feline maintainers will fix this issue since it will effect many themes.

Cheers.