comparison src/proto/highlight.pro @ 17490:367ef00c6258 v8.1.1743

patch 8.1.1743: 'hlsearch' and match highlighting in the wrong place commit https://github.com/vim/vim/commit/bbca7732e8a3deb6e5dcf84739579a2667a75475 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jul 24 18:13:16 2019 +0200 patch 8.1.1743: 'hlsearch' and match highlighting in the wrong place Problem: 'hlsearch' and match highlighting in the wrong place. Solution: Move highlighting from inside screen functions to highlight.c.
author Bram Moolenaar <Bram@vim.org>
date Wed, 24 Jul 2019 18:15:06 +0200
parents bba80d61ea73
children b1fac55cf8a3
comparison
equal deleted inserted replaced
17489:b2d4523cda0a 17490:367ef00c6258
42 void set_context_in_highlight_cmd(expand_T *xp, char_u *arg); 42 void set_context_in_highlight_cmd(expand_T *xp, char_u *arg);
43 char_u *get_highlight_name(expand_T *xp, int idx); 43 char_u *get_highlight_name(expand_T *xp, int idx);
44 char_u *get_highlight_name_ext(expand_T *xp, int idx, int skip_cleared); 44 char_u *get_highlight_name_ext(expand_T *xp, int idx, int skip_cleared);
45 void free_highlight_fonts(void); 45 void free_highlight_fonts(void);
46 void clear_matches(win_T *wp); 46 void clear_matches(win_T *wp);
47 void init_search_hl(win_T *wp, match_T *search_hl);
48 void prepare_search_hl(win_T *wp, match_T *search_hl, linenr_T lnum);
49 int prepare_search_hl_line(win_T *wp, linenr_T lnum, colnr_T mincol, char_u **line, match_T *search_hl, int *search_attr);
50 int update_search_hl(win_T *wp, linenr_T lnum, colnr_T col, char_u **line, match_T *search_hl, int *has_match_conc, int *match_conc, int did_line_attr, int lcs_eol_one);
51 int get_prevcol_hl_flag(win_T *wp, match_T *search_hl, long curcol);
52 void get_search_match_hl(win_T *wp, match_T *search_hl, long col, int *char_attr);
47 void f_clearmatches(typval_T *argvars, typval_T *rettv); 53 void f_clearmatches(typval_T *argvars, typval_T *rettv);
48 void f_getmatches(typval_T *argvars, typval_T *rettv); 54 void f_getmatches(typval_T *argvars, typval_T *rettv);
49 void f_setmatches(typval_T *argvars, typval_T *rettv); 55 void f_setmatches(typval_T *argvars, typval_T *rettv);
50 void f_matchadd(typval_T *argvars, typval_T *rettv); 56 void f_matchadd(typval_T *argvars, typval_T *rettv);
51 void f_matchaddpos(typval_T *argvars, typval_T *rettv); 57 void f_matchaddpos(typval_T *argvars, typval_T *rettv);