-
Notifications
You must be signed in to change notification settings - Fork 171
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
Cant disable cursor styling #1063
Comments
We should support the I'm only familiar with configuring the cursor via Can you provide some additional details so I can reproduce (and hopefully fix) the issue? What do you expect to happen, and what happens instead? You could also try setting the option to a style-less default, such as: |
These configuration line is basically the same as set guicursor= So I expect the cursor to go full block style, but after restarting nvim-qt the cursor still change according to the mode where I'm in, e.g. in Insert mode the cursor changed to thin style, on Replace mode the cursor go underscore style. |
Okay, I see what is going on here. We do support cursor styling and the lack thereof. However, when no cursor styling is applied, we use some defaults: Lines 695 to 714 in b4ca557
To get the behavior you're looking for, we would need to set the cursor into block mode whenever styling is disabled. I don't think what we're doing is strictly wrong, but there is a behavior difference from the TUI. Generally, we try to match the TUI behavior when possible. In the meantime, you could explicitly specify how you want the cursor to behave:
|
The |
Platform:
Endeavour OS Linux (Arch based)
I have a line on my configuration file to disable cursor styling:
But it doesn't get sourced when I open nvim-qt. The other configuration option works, so I think it may be a problem on nvim-qt's guicursor implementation. Anyone having the same problem?
The text was updated successfully, but these errors were encountered: