selection: on_row_in_view() -> on_rows_in_view(), and now takes a range

This allows us to check the selection once when scrolling, instead of
once for each scrolled in line.
This commit is contained in:
Daniel Eklöf 2020-05-16 16:28:32 +02:00
parent b647aa447b
commit 38c050746d
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
3 changed files with 37 additions and 15 deletions

View file

@ -16,7 +16,7 @@ void selection_finalize(struct terminal *term, uint32_t serial);
void selection_cancel(struct terminal *term);
void selection_extend(struct terminal *term, int col, int row, uint32_t serial);
bool selection_on_row_in_view(const struct terminal *term, int row_no);
bool selection_on_rows_in_view(const struct terminal *term, int start, int end);
void selection_mark_word(struct terminal *term, int col, int row,
bool spaces_only, uint32_t serial);