mirror of
https://github.com/neovim/neovim.git
synced 2026-09-03 21:00:34 +00:00
Problem: The cmdline_hide callback causes an unnecessary cursor move to the cmdline, before the normal redraw updates the cursor back to the current window. This appears as "flicker" when using plugins such as matchit (legacy ":" mappings instead of "<cmd>" mappings). Solution: Skip the immediate redraw for cmdline_hide events. The normal redraw still updates the cursor after the cmdline window is hidden.