Fix hyperlinks not present when fetching text from the history buffer

Fixes #5427
This commit is contained in:
Kovid Goyal
2022-08-28 08:54:53 +05:30
parent e330c38d4a
commit c856d5c058
6 changed files with 15 additions and 10 deletions

View File

@@ -241,6 +241,7 @@ typedef struct SelectionUpdate {
} SelectionUpdate;
void screen_update_selection(Screen *self, index_type x, index_type y, bool in_left_half, SelectionUpdate upd);
bool screen_history_scroll(Screen *self, int amt, bool upwards);
PyObject* as_text_history_buf(HistoryBuf *self, PyObject *args, ANSIBuf *output);
Line* screen_visual_line(Screen *self, index_type y);
unsigned long screen_current_char_width(Screen *self);
void screen_mark_url(Screen *self, index_type start_x, index_type start_y, index_type end_x, index_type end_y);