Insert mode cursor is now the block instead of the pipe
See original GitHub issuePlease 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.
What did you do?
i
What did you expect to happen?
The cursor would be the pipe (|
).
What happened instead?
The cursor is a block.
Screenshot
Look at lib.rs:11
Technical details:
- VSCode Version: 1.10.2 (8076a19fdcab7e1fc1707952d652f0bb6c6db331)
- VsCodeVim Version: 0.6.13
- OS: macOS 10.12.3
Issue Analytics
- State:
- Created 6 years ago
- Comments:6 (4 by maintainers)
Top Results From Across the Web
How to change the cursor between Normal and Insert modes ...
In insert mode, the cursor shape changes to a thin vertical bar. In replace mode, it changes to an underline. On returning to...
Read more >Vim how to change the cursor from char block to pre pipe/line
"CURSOR COLOUR When in terminal " change the color of the cursor to white in command mode,and orange in insert mode if &term...
Read more >Change Your Vim Cursor from a Block to Line ... - Nick Janetakis
Here's how you can change your Vim cursor depending on which mode you're in. It should work with most terminal emulators.
Read more >How do I change cursor from a block back to
Block cursor indicates Insert mode. You can toggle it with Insert key. Another possible reason is Block caret option enabled: http://i.imgur.
Read more >Cursor is overwriting text - MSDN - Microsoft
My cursor suddenly changed to a small font sized grey box that now ... text along if I want to insert and write...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
and if it is not, can you set it to line. We just enabled this feature this release, so that you can use line-thin, block-outline, underline, underline-thin if you want. We used to just automatically set it to line but some users wanted to use other cursors for insert mode.
Ok,
"editor.cursorStyle": "line",
is exactly what I wanted.Thank you!