We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The VSCodeVim team prioritizes issues based on reaction count.
This is a FEATURE REQUEST:
Description: VsCode allows setting the cursor style like this:
"editor.cursorStyle": "line"
I would like to be able to customize the cursor style for the different vim modes as well. For example, I would like to be able to do this:
"vim.normalModeCursorStyle": "underline"
Implementation Details:
In the mode classes (ex: src/mode/modeNormal.ts), instead of hardcoding the cursorType, read it from the user settings.
src/mode/modeNormal.ts
cursorType
The text was updated successfully, but these errors were encountered:
73420a2
Merge pull request #2054 from xconverge/customize-cursor-styles
8da76ef
Fixes #2050 Allow custom cursor styles per mode
xconverge
No branches or pull requests
The VSCodeVim team prioritizes issues based on reaction count.
This is a FEATURE REQUEST:
Description:
VsCode allows setting the cursor style like this:
I would like to be able to customize the cursor style for the different vim modes as well. For example, I would like to be able to do this:
Implementation Details:
In the mode classes (ex:
src/mode/modeNormal.ts
), instead of hardcoding thecursorType
, read it from the user settings.The text was updated successfully, but these errors were encountered: