mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-03 04:34:21 -05:00
Fix reset cursor terminfo escape
The reset cursor terminal escape sequnce specified in the terminfo file was using xterm's `\E[2 q`. However this just resets the cursor to the block cursor shape. Since Alacritty supports the `\E[0 q` escape sequence for resetting the cursor shape to the original shape specified in the configuration file, the terminfo file has been altered to make use of this sequence instead.
This commit is contained in:
parent
ec3a80427b
commit
2ef376bb72
1 changed files with 1 additions and 1 deletions
|
@ -106,4 +106,4 @@ alacritty+common|base fragment for alacritty,
|
|||
kPRV5=\E[5;5~, kPRV6=\E[5;6~, kPRV7=\E[5;7~,
|
||||
kdch1=\E[3~,
|
||||
Cr=\E]112\007, Cs=\E]12;%p1%s\007,
|
||||
Ms=\E]52;%p1%s;%p2%s\007, Se=\E[2 q, Ss=\E[%p1%d q,
|
||||
Ms=\E]52;%p1%s;%p2%s\007, Se=\E[0 q, Ss=\E[%p1%d q,
|
||||
|
|
Loading…
Reference in a new issue