-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
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
[idea] Solid cursor. #35
Comments
+1 came here looking for a |
Editing
|
@raghur Oh wow, I forgot it's just web tech. That was easy! |
Also, this fixes insert mode cursor .insert-mode #nvas-cursor {
border: 0;
border-left: 2px solid;
background-color: transparent;
} |
I like the transparent cursor: #nvas-cursor {
position: absolute;
box-sizing: border-box;
background: rgba(255,255,255,0.3);
} 😄 |
Strictly speaking, we should probably inverse the fg/bg color under a solid cursor, yet currently we do not store the colors of each character. |
@coolwanglu Yeah, having the cursor color the inverse of the letter would be neat! Another neat hack would be to fill in the last empty space in the visual selection (you know how vim leaves the background of the character that the cursor is on empty when in VISUAL mode?) |
Can you add an option to change the block cursor from outlined to solid? A good reason to have a solid cursor is because in some terminals an outline cursor indicates the window isn't in focus.
The text was updated successfully, but these errors were encountered: