Change cursor in VSCodeVim during insert or command mode?
Asked Answered
A

1

10

Using the most excellent VSCodeVim plugin. Is it possible to have the cursor change when in normal/command mode (block perhaps) versus input mode (vertical or underline perhaps)?

Amidships answered 17/2, 2018 at 12:49 Comment(0)
W
10

You can add these in your setting.json or search for these terms in case of using GUI setting

"vim.cursorStylePerMode.insert": "line-thin",
"vim.cursorStylePerMode.normal": "block",

This will turn cursor to thin line in insert mode and block in normal mode, which will distinguish both easily.

Winner answered 20/10, 2018 at 15:30 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.