mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-27 07:58:07 -04:00
term: split cursor blink state into two
There are two different escape sequences that can be used to set the cursor blink state: ‘CSI ? 12 h/l’ and ‘CSI Ps SP q’. Up until now, they both modified the same internal state in foot. This meant you could enable a blinking cursor with e.g. ‘CSI ? 12 h’ and then disable it with ‘CSI 2 SP q’. Since the ‘CSI ? 12’ escapes are used in the civis/cnorm/cvvis terminfo entries, applications often ended up disabling the blink state on exit (typically be emitting ‘cnorm’), requiring users to manually re-enable blinking. By splitting the internal state into two separate states, we can improve the situation. The cursor will blink if at least one of the two have been enabled. The setting in foot.ini sets the default state of the ‘CSI Ps SP q’ escape. This means if the user has enabled blinking in the configuration, the cursor will blink regardless of civis/cnorm/cvvis. Which probably is what the user wants. If the user has NOT enabled blinking, civis/cnorm/cvvis act as intended: cvvis blink, civis and cnorm do not. If an application overrides the cursor blink/style with ‘CSI Ps SP q’, that will override the user’s setting in foot.ini. But most likely that too is intended (for example, the user may have configured the application to use a different cursor style). And, a well written application will emit the ‘Se’ terminfo sequence on exit, which in foot is defined to ‘CSI SP q’, which will reset both the style and blink state to the user configured style/state. Closes #218
This commit is contained in:
parent
360cc8e6de
commit
cb2f496269
3 changed files with 15 additions and 38 deletions
|
|
@ -95,6 +95,10 @@ means foot can be PGO:d in e.g. sandboxed build scripts. See
|
|||
* Graphical glitches/flashes when resizing the window while running a
|
||||
fullscreen application, i.e. the 'alt' screen
|
||||
(https://codeberg.org/dnkl/foot/issues/221).
|
||||
* Cursor will now blink if **either** `CSI ? 12 h` or `CSI Ps SP q`
|
||||
has been used to enable blinking. **cursor.blink** in `foot.ini`
|
||||
controls the default state of `CSI Ps SP q`
|
||||
(https://codeberg.org/dnkl/foot/issues/218).
|
||||
|
||||
|
||||
### Deprecated
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue