-
Notifications
You must be signed in to change notification settings - Fork 3k
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
Cursor Not Blinking #302
Comments
Blinking just hasn't been implemented yet. Even if it were, there's another piece missing to make i stop blinking when the window isn't focused. |
I thought that might be the case, didn't see an issue for it though. Thanks for the confirmation |
Thanks for filing this one! |
I'd like to express my support for an option to DISABLE blinking, once it arrives. I detest blinking. The screen is constantly changing, and I can't focus on what I'm writing. Not an attack on people who do like it, or anything, just a request. |
@jwilm is the piece (to make cursor stop blinking when the window isn't focused) still missing? :) |
@rafi cursor doesn't blink at all yet |
@jwilm is cursor blinking implemented yet? |
It is not. |
any hints on where one should be looking to solve this one? |
This isn't super simple, since a proper implementation would probably make use of a common interface to specify things which can automatically repeat based on a timer. Things like scrolling during selection would also benefit from something like that. I've personally tried to make a little PoC of something like that work in here: #1512, however there certainly is some complexity to this and I'm not sure which approach I'd be happiest with. |
This comment has been minimized.
This comment has been minimized.
1 similar comment
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
I also miss blinking cursor, helps on hidpi screens, if it is implemented it should honor .inputrc settings like: set vi-ins-mode-string \033[1;31m<(ins)>\033[0m \1\e[5 q\2 what alacritty could add is a timer, like xfce4-terminal does it for eg. |
need a way to set cursor blinking in |
Any progress on this? |
Is there a way to use that branch? |
Please note this branch isn't fully functional yet. |
Any update on the implementation? |
Not yet, see PR #3931 |
Any update? |
It works now, maybe You need to set it like '\1\e[1 q\2' in ~/.inputrc |
Add the following to your
Then close and reopen your terminal. See the default config for more info. |
Not working. |
Yup, doesn't work for me either - on macOS. |
This worked for me : cursor:
style:
blinking: Always
blink_interval: 500 close and reopen |
Works for me: cursor:
style:
shape: Block
blinking: Always
blink_interval: 500 |
Stops blinking after some time! How do I fix this? |
Line 431 in 2df8f86
|
I can't seem to make it blink any faster than the setting of 500. Can we change this to blink the cursor a bit faster? Is there some kind of internal limitation? |
You need to lower the number, not increase it. |
Yeah that's what I'm saying. Setting 300, or 50, still sees it blinking about once a second. |
OK I had the blink_interval and blink_timeout listed under style, when they need to be outside, under cursor. All works now. Great. |
|
Just setting it to `0` works for me to get it to stop blinking.
…On 3/28/23 15:09, Steven Lu wrote:
There's no way to get it to never stop blinking. ```Config error: blink_timeout: invalid value: integer `257`, expected u8```
|
This works for me in [cursor]
blink_interval = 500
[cursor.style]
shape = "Block"
blinking = "Always" |
Any idea how to control the way it blinks? |
@vgnshiyer see https://alacritty.org/config-alacritty.html. Otherwise, not sure what you mean by "the way it blinks". |
Is there an option to cause the cursor to blink? I find it to be helpful confirmation that the terminal has (or doesn't have) focus.
The text was updated successfully, but these errors were encountered: