Home
last modified time | relevance | path

Searched refs:exact_match (Results 1 – 5 of 5) sorted by relevance

/vim-8.2.3635/src/testdir/
H A Dtest_search_stat.vim19 \ #{current: 1, exact_match: 1, total: 40, incomplete: 0, maxcount: 99},
22 \ #{current: 0, exact_match: 0, total: 10, incomplete: 0, maxcount: 99},
25 \ #{current: 0, exact_match: 0, total: 10, incomplete: 0, maxcount: 99},
28 \ #{current: 1, exact_match: 1, total: 10, incomplete: 0, maxcount: 99},
32 \ #{current: 1, exact_match: 1, total: 10, incomplete: 0, maxcount: 99},
36 \ #{current: 1, exact_match: 0, total: 10, incomplete: 0, maxcount: 99},
39 \ #{current: 1, exact_match: 0, total: 10, incomplete: 0, maxcount: 99},
42 \ #{current: 1, exact_match: 0, total: 2, incomplete: 2, maxcount: 1},
45 \ #{current: 0, exact_match: 0, total: 2, incomplete: 2, maxcount: 1},
56 \ #{current: 2, exact_match: 1, total: 50, incomplete: 0, maxcount: 99},
[all …]
H A Dtest_vim9_builtin.vim2931 exact_match: 1,
/vim-8.2.3635/src/
H A Dsearch.c29 int exact_match; // TRUE if matched exactly on specified position member
3215 static int exact_match = FALSE; in update_search_stat() local
3231 stat->exact_match = exact_match; in update_search_stat()
3254 exact_match = FALSE; in update_search_stat()
3290 exact_match = TRUE; in update_search_stat()
3312 stat->exact_match = exact_match; in update_search_stat()
4201 dict_add_number(rettv->vval.v_dict, "exact_match", stat.exact_match); in f_searchcount()
/vim-8.2.3635/runtime/doc/
H A Deval.txt9475 exact_match |Boolean| 1 if "current" is matched on
H A Dversion8.txt46653 Problem: Searchcount().exact_match is 1 right after a match.