-
Notifications
You must be signed in to change notification settings - Fork 57
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
g:fzf_colors on light background makes the text invisible in fzf window #5
Comments
I'm unable to reproduce this. Minimal configuration: if has('nvim')
set runtimepath^=~/.vim runtimepath+=~/.vim/after
let &packpath = &runtimepath
endif
call plug#begin('~/.cache/vim/plugins')
Plug 'junegunn/fzf'
Plug 'junegunn/fzf.vim'
Plug 'sainnhe/edge', { 'as': 'vim-color-edge' }
call plug#end()
set termguicolors
set background=light
augroup testFzf
autocmd!
autocmd ColorScheme * unlet g:fzf_colors
augroup END
colorscheme edge Demo: I think this is visible enough, please provide steps to reproduce it. In addition, why do you want to |
neovim-qt, nvim 0.5.0, Ubuntu 16.04 GVim, Vim 8.2 Windows 10 (Edge VM). I don't want to |
Truecolor does not work on default Windows terminal. It is a problem in neovim GUIs. sainnhe/edge#5 (comment)
I'll mitigate the text,background color issue in upstream instead. |
Truecolor does not work on default Windows terminal. It is a problem in neovim GUIs. sainnhe/edge#5 (comment)
g:fzf_colors is okay in dark background.
Tested with fzf.vim, GFiles command, termguicolors on, light background.
Workaround is to use an autocmd to
unlet g:fzf_colors
after setting the colorscheme.The text was updated successfully, but these errors were encountered: