Hello, alacritty is lovely, but i found annoying bug? with cursor movement. It disappears when user go to start of line, and it reappears if you go to end of line again.
This video shows it: https://asciinema.org/a/edvwg4ti2p5f4sxiqbx6gu3j6
environment : shell -> zsh
keys pressed:
bindkey '^A' beginning-of-line (CTRL-A)
bindkey '^E' end-of-line (CTRL-E)
Thanks for this great software
Interesting, to clarify what I understood from the video, after you jump with Ctrl+A
the cursor is still there, the cursor becomes invisible only while you are typing the text, and reappears when you stopped typing something.
I couldn't repro it by the way.
Hello @maximbaz , sorry if my instructions werent clear. I discovered some things:
Anyways, seems is not alacritty related, otherwise is about my setup.
Thanks , you can close this
Leaving this here for anyone else encountering this issue. For me, it was triggered because I enabled cursor
in: zsh-users/zsh-syntax-highlighting
.
ZSH_HIGHLIGHT_HIGHLIGHTERS=(main brackets pattern cursor)
By default it only contains main
. When you disable cursor
again you can prevent the bug from occurring.
Most helpful comment
Leaving this here for anyone else encountering this issue. For me, it was triggered because I enabled
cursor
in:zsh-users/zsh-syntax-highlighting
.By default it only contains
main
. When you disablecursor
again you can prevent the bug from occurring.