-
-
Notifications
You must be signed in to change notification settings - Fork 87
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
cursor jumping #273
Comments
Experiencing the same issue after the update to neovim 0.10.0 when running in zellij. Edit: when running in tmux, the cursor is just flickering, but not jumping |
I have the same issues as dj95 running nightly neovim with alacritty and zellij |
iterm2, tmux and neovim 0.10, but no flickering. However, I see flickering on zellij regardless of what terminal I use. |
Can see this very clearly using neovide, with its animated cursor. A long trail between the two positions as the cursor flicks back & forth. |
I have the same issue on Windows Terminal, without using any terminal multiplexer Edit but my cursor is also flickering when the notification is displayed |
Found solution: I've disabled animation by setting 'stages' to 'static' return {
"rcarriga/nvim-notify",
config = function()
require("notify").setup({
-- stages = "fade_in_slide_out",
stages = "static",
render = "compact",
background_colour = "FloatShadow",
timeout = 3000,
})
vim.notify = require("notify")
end,
} |
Thank you! It's work for me too. P.S. |
@sineptic related issue: folke/noice.nvim#923 (comment) |
I know that nearly same issue(#63) exist.
BUT in my situation cursor jumps in the same location every time. Mb it happens because it's plugin bug.
Screencast.from.2024-05-22.18-10-21.webm
I use lazy package manager and add this plugin with only 1 line(no configuration)
The text was updated successfully, but these errors were encountered: