nvim-notify icon indicating copy to clipboard operation
nvim-notify copied to clipboard

cursor jumping

Open sineptic opened this issue 1 year ago • 8 comments

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)

sineptic avatar May 22 '24 15:05 sineptic

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

dj95 avatar May 25 '24 08:05 dj95

I have the same issues as dj95 running nightly neovim with alacritty and zellij

LarssonMartin1998 avatar Jun 03 '24 21:06 LarssonMartin1998

iterm2, tmux and neovim 0.10, but no flickering. However, I see flickering on zellij regardless of what terminal I use.

uroybd avatar Jun 10 '24 08:06 uroybd

Can see this very clearly using neovide, with its animated cursor. A long trail between the two positions as the cursor flicks back & forth.

jkhoffman avatar Jul 26 '24 18:07 jkhoffman

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

radlinskii avatar Jul 31 '24 12:07 radlinskii

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,
}

sumarokov-vp avatar Jul 31 '24 22:07 sumarokov-vp

I've disabled animation by setting 'stages' to 'static'

Thank you! It's work for me too.

P.S. You can write config for plugin in opts = { ... } and do some things(if needed) in init = function() ... end

sineptic avatar Aug 07 '24 12:08 sineptic

@sineptic related issue: https://github.com/folke/noice.nvim/issues/923#issuecomment-2310202468

vricop avatar Aug 26 '24 14:08 vricop