Please thumbs-up 馃憤 this issue if it personally affects you! You can do this by clicking on the emoji-face on the top right of this post. Issues with more thumbs-up will be prioritized.
When I enter insert mode, the cursor blinks.
I want the cursor to change shape, but not to blink.
The cursor blinked when I entered insert mode.
This was behavior was recently changed due to this closed issue:
https://github.com/VSCodeVim/Vim/issues/1105
I cannot stand blinking cursors. Please allow the option to never see a blinking cursor.
This is configurable by a VSCode setting now.
First, remove any line in your config that looks like this:
"vim.useSolidBlockCursor": true,
Now, add this line to your config.
"editor.cursorBlinking": "solid",
You should now have a solid cursor everywhere.
Thank you! I had added vim.useSolidBlockCursor recently due to another issue and that was my issue.
Most helpful comment
This is configurable by a VSCode setting now.
First, remove any line in your config that looks like this:
"vim.useSolidBlockCursor": true,Now, add this line to your config.
"editor.cursorBlinking": "solid",You should now have a solid cursor everywhere.