Commit 09bc7d4 makes opencode.nvim unusable when using edgy.nvim for window management. The cursor jumps to the beginning of the line on every character typed, making it impossible to write prompts.
Additionally, after this commit, Neovim hangs for some time on quit even when not using edgy.nvim at all.
I used this snippet to "fix" edgy.nvim issue for me:
config = function(_, opts)
require('opencode').setup(opts)
local input_window = require 'opencode.ui.input_window'
input_window.schedule_resize = function() end
end,
But I am not sure about the reason of the hanging.
Commit 09bc7d4 makes
opencode.nvimunusable when usingedgy.nvimfor window management. The cursor jumps to the beginning of the line on every character typed, making it impossible to write prompts.Additionally, after this commit, Neovim hangs for some time on quit even when not using
edgy.nvimat all.I used this snippet to "fix" edgy.nvim issue for me:
But I am not sure about the reason of the hanging.