url-mode: store absolute row numbers in start/end coordinates

This allows us to update the jump label positions when the viewport
changes.

This in turn allows us to stay in URL mode while the user is using the
mouse to scroll in the scrollback history.

Scrolling with the keyboard is currently not possible, since input
handling in URL mode does not recognize “regular” key bindings. We
_could_ add scrollback up/down bindings to URL mode too, but lets not,
for the time being.

(Note: an alternative to this patch is to disallow mouse scrolling
too. Then we could have kept the URL start/end as viewport local
coordinates).
This commit is contained in:
Daniel Eklöf 2021-02-06 11:47:59 +01:00
parent a578faf494
commit 6726494f4c
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
3 changed files with 34 additions and 3 deletions

View file

@ -83,6 +83,7 @@ cmd_scrollback_up(struct terminal *term, int rows)
} else
term_damage_view(term);
render_refresh_urls(term);
render_refresh(term);
}
@ -157,5 +158,6 @@ cmd_scrollback_down(struct terminal *term, int rows)
} else
term_damage_view(term);
render_refresh_urls(term);
render_refresh(term);
}