fredizzimo

Results 1393 comments of fredizzimo

I think you forgot to tell how you are starting Neovim, because it does not seem to be started by Neovide, due to the lack of the line `Starting neovim...

This time the log shows that the settings were changed 11 time, so I believe that everything else than the transparency applied. Window transparency and full screen are incompatible due...

The `neovide_transparency` variable is a bit poorly named https://neovide.dev/configuration.html#transparency, it should actually be `neovide_opacity', so with your value of `1.0` for `neovide_transparency` the window will be fully opaque.

I mean the value should be less than one for a transparent window, and 0 for a completely transparent one.

@Ktoks, did you try if `neovide_transparency=0` makes a difference? I don't see why it shouldn't. But your current setting `neovide_transparency=1` should not, since it's already the default.

I created this Neovim issue * https://github.com/neovim/neovim/issues/29634 The best workaround for now is to remove the `if vim.g.neovide` check, if you use `neovide --server` Also, see this issue * https://github.com/neovide/neovide/issues/1868

I would prefer if the automatic setting was good enough for all cases and we wouldn't need to expose a setting for this. Maybe, there's still something wrong with our...

To me it does look like there's something wrong with the underline position in that screenshot, I don't think it should ever overlap with the bottom of `z` for example....

It's a little bit strange, because our position should actually be lower than the designed position with the current code. https://github.com/neovide/neovide/blob/1db63d93b18cc1eb5ac5b3e67b3ca63505f10800/src/renderer/grid_renderer.rs#L251 That should actually be `let p1 = (p1.x.round(), (p1.y...

I'm not able to test this myself, but I believe that this should take the `leading` into account, which means it could be `self.y_adjustment() - metrics.underline_offset` https://github.com/neovide/neovide/blob/1db63d93b18cc1eb5ac5b3e67b3ca63505f10800/src/renderer/fonts/caching_shaper.rs#L215 The code that...