damanis
damanis
The problem started after [https://github.com/neovim/neovim/commit/1d16bba4d8b8b648d2dabd610924bcf3051a0f29](https://github.com/neovim/neovim/commit/1d16bba4d8b8b648d2dabd610924bcf3051a0f29). It occurs then `vim.o.clipboard = [[unnamed]]` is configured (this is useful configuration). So, run neovide, use yank command then try quit. Neovide stucks. In `ps...
The problem does not relate to clipboard managers. Neovim uses external applications such as `xsel` or `xclip` to copy and paste to/from X selection and clipboard. On exit nvim exits,...
@fredizzimo The `neovim-qt` exits cleanly, it does not wait anything. It is not clear for me yet, what exactly occurs. I see that after pressing `yank` `nvim` runs `/usr/bin/xsel --nodetach...
@fredizzimo I checked now - neovim-qt does not enter to `MainWindow::neovimGuiCloseRequest`.
@fredizzimo I get different behavior on Ubuntu 20.04 and 22.04. I reported this issue for Ubuntu 20.04, but I can't reproduce the problem on Ubuntu 22.04 (while in `goneovim` the...
@fredizzimo I tried you suggestion (close stderr , `call jobclose(jobid, 'stderr')`, for xsel) in [neovim issue](https://github.com/neovim/neovim/issues/26743) — it does not solve the problem.
@fredizzimo There are changes I made in neovim tree, then compile and install. ``` diff --git a/runtime/autoload/provider/clipboard.vim b/runtime/autoload/provider/clipboard.vim index 05f6bdb87..7a82b838c 100644 --- a/runtime/autoload/provider/clipboard.vim +++ b/runtime/autoload/provider/clipboard.vim @@ -216,9 +216,10 @@ function!...
> Are you, sure that you are using the correct nvim binary that you compiled yourself? Yes, I removed nvim.appimage before testing. The problem is more complicated: - `xclip`: `neovide`...
I compiled the patch #2265 on Ubuntu 20.04. The clipoboard (with `xsel`), works properly, I did not see problem yet. `Neovim` process stays in background after `neovide` exits if some...
It relates to configuration option `o.clipboard = [[unnamed]]` in nvim init file. When the option is commented out, there is no problem, but it required for PRIMARY selection support.