-
-
Notifications
You must be signed in to change notification settings - Fork 131
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
Floating windows decoration highlighting problem #101
Comments
Do you know what the border is? I mainly use Vim and don't know much about it. |
Window on screenshot is created by https://github.com/stevearc/dressing.nvim plugin.
|
any updates? 🙇 |
This is a workaround, but we can link " NOTE: This must be defined PRIOR to setting the colorscheme.
if has('nvim')
function! s:fix_iceberg_border() abort
highlight link FloatNormal Normal
highlight link FloatBorder Delimiter
endfunction
augroup my_iceberg_fix
autocmd!
autocmd ColorScheme iceberg call s:fix_iceberg_border()
augroup END
endif The above configuration makes the floating window appear as follows: |
Some floating windows (probably those, who use NormalFloat highlight) have black borders on black background:
You may see same problem on your screenshot, where you have used TSHighlightCapturesUnderCursor
The text was updated successfully, but these errors were encountered: