Anyone else experiencing cursor flicking in nightly? #1596
Replies: 3 comments 7 replies
-
I’ll check if there’s something that can be done from fzf-lua’a side about this. |
Beta Was this translation helpful? Give feedback.
-
I am also seeing this in lazygit's commit input, I think it's related to neovim itself or the terminal emulator. Sorry for the false report. |
Beta Was this translation helpful? Give feedback.
-
So I looked into it, the merged PR you linked neovim/neovim#31562, it basically proxies your current terminal cursor to neovim, from my short testing the flickering depends on the terminal type, different on alacritty, wezterm, windows term, etc). The good thing is that the PR also adds another terminal mode setting If you wish to restore the previous non blinking block cursor: :lua vim.opt.guicursor = "n-v-c-sm:block,i-ci-ve:ver25,r-cr-o:hor20,t:block" If you want a vertical line (similar to INSERT mode): :lua vim.opt.guicursor = "n-v-c-sm:block,i-ci-ve:ver25,r-cr-o:hor20,t:ver25" I'm considering making one of the above the default with fzf-lua but I'm not yet sure about it as |
Beta Was this translation helpful? Give feedback.
-
After update to recent nightly:
Seems caused by:neovim/neovim#31562 and surprisingly so far I only experience this issue with 'find files', e.g. find commits does not flicking.
Beta Was this translation helpful? Give feedback.
All reactions