comparison src/proto/screen.pro @ 34571:fdd232ab72ea v9.1.0184

patch 9.1.0184: Cursor pos wrong when clicking with conceal and wrap Commit: https://github.com/vim/vim/commit/d0c1b7723f7e73763597af2f97a53d94ab7ed020 Author: zeertzjq <zeertzjq@outlook.com> Date: Sat Mar 16 15:03:33 2024 +0100 patch 9.1.0184: Cursor pos wrong when clicking with conceal and wrap Problem: Cursor position wrong when clicking with conceal and wrap. Solution: Use the virtual column of the last char for ScreenCols[] in boguscols. Remove use of MAXCOL in ScreenCols[]. Rename third argument of wlv_screen_line() to "clear_end" as that's clearer what it does (zeertzjq). related: 14192 closes: #14200 Signed-off-by: zeertzjq <zeertzjq@outlook.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Sat, 16 Mar 2024 15:15:04 +0100
parents e7d64a3fffe4
children
comparison
equal deleted inserted replaced
34570:68553f944407 34571:fdd232ab72ea
5 void win_draw_end(win_T *wp, int c1, int c2, int draw_margin, int row, int endrow, hlf_T hl); 5 void win_draw_end(win_T *wp, int c1, int c2, int draw_margin, int row, int endrow, hlf_T hl);
6 int compute_foldcolumn(win_T *wp, int col); 6 int compute_foldcolumn(win_T *wp, int col);
7 size_t fill_foldcolumn(char_u *p, win_T *wp, int closed, linenr_T lnum); 7 size_t fill_foldcolumn(char_u *p, win_T *wp, int closed, linenr_T lnum);
8 int screen_get_current_line_off(void); 8 int screen_get_current_line_off(void);
9 void reset_screen_attr(void); 9 void reset_screen_attr(void);
10 void screen_line(win_T *wp, int row, int coloff, int endcol, int clear_width, int flags); 10 void screen_line(win_T *wp, int row, int coloff, int endcol, int clear_width, colnr_T last_vcol, int flags);
11 void rl_mirror(char_u *str); 11 void rl_mirror(char_u *str);
12 void draw_vsep_win(win_T *wp, int row); 12 void draw_vsep_win(win_T *wp, int row);
13 int stl_connected(win_T *wp); 13 int stl_connected(win_T *wp);
14 int get_keymap_str(win_T *wp, char_u *fmt, char_u *buf, int len); 14 int get_keymap_str(win_T *wp, char_u *fmt, char_u *buf, int len);
15 void win_redr_custom(win_T *wp, int draw_ruler); 15 void win_redr_custom(win_T *wp, int draw_ruler);