vim-easymotion icon indicating copy to clipboard operation
vim-easymotion copied to clipboard

Easymotion crashes NeoVim

Open synic opened this issue 1 year ago • 3 comments

This is my lazy.nvim configuration for easymotion:

	{
		"Lokaltog/vim-easymotion",
		init = function()
			vim.g.EasyMotion_smartcase = true
			vim.g.EasyMotion_do_mapping = false
			vim.g.EasyMotion_inc_highlight = false
			vim.g.EasyMotion_disable_two_key_combo = true
			vim.g.EasyMotion_keys = "abcdefhjkmnoprstuvwxyz;"
		end,
		keys = {
			{ "<leader><leader>", "<plug>(easymotion-overwin-f)", desc = "Jump to location", mode = "n" },
			{ "<leader><leader>", "<plug>(easymotion-bd-f)", desc = "Jump to location", mode = "v" },
		},
	},

My NeoVim version is: v0.10.0-dev-2786+gb3f9da952, though this happens with 0.9 as well.

I mostly just use <space><space> and then a character to jump anywhere in neovim, even across windows. However, sometimes when I press the target key, neovim just crashes immediately.

I have not determined exactly what causes this. It seems to be random, but more often when there's more than one split window visible.

synic avatar Apr 02 '24 16:04 synic

Oh wow, I just realized I haven't updated the repository from Lokaltog. I'll try that to see if it helps.

synic avatar Apr 02 '24 21:04 synic

Nope, that definitely did not help.

synic avatar Apr 03 '24 21:04 synic