Mercurial > vim
comparison src/proto/screen.pro @ 24043:15408ab5fed7 v8.2.2563
patch 8.2.2563: cannot use multibyte characters for folding in 'fillchars'
Commit: https://github.com/vim/vim/commit/4fa1175765d55613302fc27d0f65e2c699452b6e
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Mar 3 13:26:02 2021 +0100
patch 8.2.2563: cannot use multibyte characters for folding in 'fillchars'
Problem: Cannot use multibyte characters for folding in 'fillchars'.
Solution: Port pull request 11568 to Vim. (Yegappan Lakshmanan,
closes #7924)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 03 Mar 2021 13:30:02 +0100 |
parents | 44be09b25619 |
children | aa55d6d17625 |
comparison
equal
deleted
inserted
replaced
24042:553271829e46 | 24043:15408ab5fed7 |
---|---|
2 int conceal_cursor_line(win_T *wp); | 2 int conceal_cursor_line(win_T *wp); |
3 void conceal_check_cursor_line(void); | 3 void conceal_check_cursor_line(void); |
4 int get_wcr_attr(win_T *wp); | 4 int get_wcr_attr(win_T *wp); |
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 void 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(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); |