-
Notifications
You must be signed in to change notification settings - Fork 54
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
Transparency issues #17
Comments
nnoremap <f10> :call <SID>SynStack()<CR>
function! <SID>SynStack()
if !exists("*synstack")
return
endif
echo map(synstack(line('.'), col('.')), 'synIDattr(v:val, "name")')
endfunc I am unable to replicate this. Can you use the above snippet? just take the cursor over the area which isn't highlighted properly and press f10. It will show you the highlight groups. Also do you have |
over a space it shows i added |
can you check the output for the command for |
|
:hi vimSet
vimSet xxx ctermfg=134 ctermbg=7 guifg=#839496 guibg=#002b36 guisp=nil :hi vimSetEqual
vimSetEqual xxx ctermfg=134 ctermbg=7 guifg=#839496 guibg=#002b36 guisp=nil so doesnt look like |
sometimes whitespace and certain text backgrounds don't properly become transparent
working correctly:
not correctly:
(im using my pager because the init.vim for it is very small, my main nvim config doesnt have vim-solarized8 installed so there's no chance its a plugin conflict, im just using it to illustrate how it should look wrt transparency)
thanks!
The text was updated successfully, but these errors were encountered: