comparison src/proto/search.pro @ 27875:ae38d2e81fca v8.2.4463

patch 8.2.4463: completion only uses strict matching Commit: https://github.com/vim/vim/commit/38b85cb4d7216705058708bacbc25ab90cd61595 Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Thu Feb 24 13:28:41 2022 +0000 patch 8.2.4463: completion only uses strict matching Problem: Completion only uses strict matching. Solution: Add the "fuzzy" item for 'wildoptions'. (Yegappan Lakshmanan, closes #9803)
author Bram Moolenaar <Bram@vim.org>
date Thu, 24 Feb 2022 14:30:05 +0100
parents 9596c652420b
children 473cfd79bcd8
comparison
equal deleted inserted replaced
27874:f4a227222e7a 27875:ae38d2e81fca
38 int get_spat_last_idx(void); 38 int get_spat_last_idx(void);
39 void f_searchcount(typval_T *argvars, typval_T *rettv); 39 void f_searchcount(typval_T *argvars, typval_T *rettv);
40 int fuzzy_match(char_u *str, char_u *pat_arg, int matchseq, int *outScore, int_u *matches, int maxMatches); 40 int fuzzy_match(char_u *str, char_u *pat_arg, int matchseq, int *outScore, int_u *matches, int maxMatches);
41 void f_matchfuzzy(typval_T *argvars, typval_T *rettv); 41 void f_matchfuzzy(typval_T *argvars, typval_T *rettv);
42 void f_matchfuzzypos(typval_T *argvars, typval_T *rettv); 42 void f_matchfuzzypos(typval_T *argvars, typval_T *rettv);
43 int fuzzy_match_str(char_u *str, char_u *pat);
44 int fuzzymatches_to_strmatches(fuzmatch_str_T *fuzmatch, char_u ***matches, int count, int funcsort);
45 void fuzmatch_str_free(fuzmatch_str_T *fuzmatch, int count);
43 /* vim: set ft=c : */ 46 /* vim: set ft=c : */