mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
csi: *sigh* looks like e.g. neovim doesn't respect Se
I.e. it issues a \E[2 q regardless of what we've configured the terminfo Se entry to. So, make \E[2 q mean "the user configured cursor style" (which defaults to 'block').
This commit is contained in:
parent
49034bb759
commit
751ac55f64
2 changed files with 6 additions and 9 deletions
13
csi.c
13
csi.c
|
|
@ -929,14 +929,12 @@ csi_dispatch(struct terminal *term, uint8_t final)
|
|||
case 'q': {
|
||||
int param = vt_param_get(term, 0, 0);
|
||||
switch (param) {
|
||||
case 0:
|
||||
term->cursor_style = term->default_cursor_style;
|
||||
term->cursor_blinking = false; /* TODO: configurable */
|
||||
case 0: case 1: /* blinking block */
|
||||
term->cursor_style = CURSOR_BLOCK;
|
||||
break;
|
||||
|
||||
case 1: /* blinking block */
|
||||
case 2: /* steady block */
|
||||
term->cursor_style = CURSOR_BLOCK;
|
||||
case 2: /* steady block - but can be overriden in footrc */
|
||||
term->cursor_style = term->default_cursor_style;
|
||||
break;
|
||||
|
||||
case 3: /* blinking underline */
|
||||
|
|
@ -950,8 +948,7 @@ csi_dispatch(struct terminal *term, uint8_t final)
|
|||
break;
|
||||
}
|
||||
|
||||
if (param != 0)
|
||||
term->cursor_blinking = param & 1;
|
||||
term->cursor_blinking = param == 0 || param & 1;
|
||||
if (term->cursor_blinking)
|
||||
LOG_WARN("unimplemented: blinking cursor");
|
||||
break;
|
||||
|
|
|
|||
|
|
@ -237,7 +237,7 @@ foot+base|foot base fragment,
|
|||
vpa=\E[%i%p1%dd,
|
||||
E3=\E[3J,
|
||||
Ms=\E]52;%p1%s;%p2%s\007,
|
||||
Se=\E[0 q,
|
||||
Se=\E[2 q,
|
||||
Ss=\E[%p1%d q,
|
||||
|
||||
# XM tells ncurses how to initialize the mouse. The xterm terminfo
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue