Skip to content
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

Open
sineptic opened this issue May 22, 2024 · 8 comments
Open

cursor jumping #273

sineptic opened this issue May 22, 2024 · 8 comments

Comments

@sineptic
Copy link

sineptic commented May 22, 2024

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)

@dj95
Copy link

dj95 commented May 25, 2024

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

@LarssonMartin1998
Copy link

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

@uroybd
Copy link

uroybd commented Jun 10, 2024

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

@jkhoffman
Copy link

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

@radlinskii
Copy link

radlinskii commented Jul 31, 2024

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

@sumarokov-vp
Copy link

sumarokov-vp commented Jul 31, 2024

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

@sineptic
Copy link
Author

sineptic commented Aug 7, 2024

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

@vricop
Copy link

vricop commented Aug 26, 2024

@sineptic related issue: folke/noice.nvim#923 (comment)

noahbaculi added a commit to noahbaculi/dotfiles that referenced this issue Aug 28, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

8 participants