fredizzimo

Results 1395 comments of fredizzimo

And also this https://gist.github.com/Linerre/f11ad4a6a934dcf01ee8415c9457e7b2, which explains exactly what Apple did.

It's tricky, because we currently don't have a way to ensure that the setting is applied before anything is rendered. We need this first https://github.com/neovim/neovim/issues/25377 It's slighty better than it...

> I am not sure I understand the impact of `UIEnter` and anything happening at start / setup? Basically without that we can't guarantee that the settings are applied in...

I'm not sure what you mean. Your screenshot only shows 2 panes, And repeating the steps looks normal to me. With clean And my normal color scheme

This can be fixed by commenting these lines https://github.com/neovide/neovide/blob/627956990b4d85a2a98a13e0c50da2155d15cd72/src/renderer/rendered_window.rs#L399-L405 I'm not sure why it's there, the UI protocol does not state that the window should be set to visible when...

I haven't found any issues with it commented, so I think I will create a PR tomorrow that deletes that code, and hope that no one will report any issues.

My bad > ["win_pos", grid, win, start_row, start_col, width, height] Set the position and size of the grid in Nvim (i.e. the outer grid size). If the window was previously...

@falcucci, I really belive we have to use zsh for the login command, just like Alacritty for example, and that I suggested here https://github.com/neovide/neovide/pull/2405#discussion_r1518355410

Here's the alacritty code ```rs // On macOS, use the `login` command so the shell will appear as a tty session. let mut login_command = Command::new("/usr/bin/login"); // Exec the shell...