comparison src/proto/screen.pro @ 29387:9dce192d1ac2 v9.0.0036

patch 9.0.0036: 'fillchars' cannot have window-local values Commit: https://github.com/vim/vim/commit/96ba25ac01279f73c0ecb5d4aa4ff37aa359e5eb Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jul 4 17:34:33 2022 +0100 patch 9.0.0036: 'fillchars' cannot have window-local values Problem: 'fillchars' cannot have window-local values. Solution: Make 'fillchars' global-local. (closes https://github.com/vim/vim/issues/5206)
author Bram Moolenaar <Bram@vim.org>
date Mon, 04 Jul 2022 18:45:04 +0200
parents f103da6ba95f
children caaf5b270018
comparison
equal deleted inserted replaced
29386:f0f3018d296b 29387:9dce192d1ac2
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(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, 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 void win_redr_status_matches(expand_T *xp, int num_matches, char_u **matches, int match, int showtail); 13 void win_redr_status_matches(expand_T *xp, int num_matches, char_u **matches, int match, int showtail);
14 int stl_connected(win_T *wp); 14 int stl_connected(win_T *wp);
15 int get_keymap_str(win_T *wp, char_u *fmt, char_u *buf, int len); 15 int get_keymap_str(win_T *wp, char_u *fmt, char_u *buf, int len);
46 void unshowmode(int force); 46 void unshowmode(int force);
47 void clearmode(void); 47 void clearmode(void);
48 void draw_tabline(void); 48 void draw_tabline(void);
49 void get_trans_bufname(buf_T *buf); 49 void get_trans_bufname(buf_T *buf);
50 int fillchar_status(int *attr, win_T *wp); 50 int fillchar_status(int *attr, win_T *wp);
51 int fillchar_vsep(int *attr); 51 int fillchar_vsep(int *attr, win_T *wp);
52 int redrawing(void); 52 int redrawing(void);
53 int messaging(void); 53 int messaging(void);
54 void comp_col(void); 54 void comp_col(void);
55 int number_width(win_T *wp); 55 int number_width(win_T *wp);
56 int screen_screencol(void); 56 int screen_screencol(void);