comparison src/proto/match.pro @ 21054:b1fac55cf8a3 v8.2.1078

patch 8.2.1078: highlight and match functionality together in one file Commit: https://github.com/vim/vim/commit/06cf97e714fd8bf9b35ff5f8a6f2302c79acdd03 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jun 28 13:17:26 2020 +0200 patch 8.2.1078: highlight and match functionality together in one file Problem: Highlight and match functionality together in one file. Solution: Move match functionality to a separate file. (Yegappan Lakshmanan, closes #6352)
author Bram Moolenaar <Bram@vim.org>
date Sun, 28 Jun 2020 13:30:04 +0200
parents
children baec4e1cee43
comparison
equal deleted inserted replaced
21053:c1f0a0815090 21054:b1fac55cf8a3
1 /* match.c */
2 void clear_matches(win_T *wp);
3 void init_search_hl(win_T *wp, match_T *search_hl);
4 void prepare_search_hl(win_T *wp, match_T *search_hl, linenr_T lnum);
5 int prepare_search_hl_line(win_T *wp, linenr_T lnum, colnr_T mincol, char_u **line, match_T *search_hl, int *search_attr);
6 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);
7 int get_prevcol_hl_flag(win_T *wp, match_T *search_hl, long curcol);
8 void get_search_match_hl(win_T *wp, match_T *search_hl, long col, int *char_attr);
9 void f_clearmatches(typval_T *argvars, typval_T *rettv);
10 void f_getmatches(typval_T *argvars, typval_T *rettv);
11 void f_setmatches(typval_T *argvars, typval_T *rettv);
12 void f_matchadd(typval_T *argvars, typval_T *rettv);
13 void f_matchaddpos(typval_T *argvars, typval_T *rettv);
14 void f_matcharg(typval_T *argvars, typval_T *rettv);
15 void f_matchdelete(typval_T *argvars, typval_T *rettv);
16 void ex_match(exarg_T *eap);
17 /* vim: set ft=c : */