Home
last modified time | relevance | path

Searched refs:matchcount (Results 1 – 3 of 3) sorted by relevance

/vim-8.2.3635/src/proto/
H A Dcmdexpand.pro10 int expand_cmdline(expand_T *xp, char_u *str, int col, int *matchcount, char_u ***matches);
/vim-8.2.3635/src/testdir/
H A Dtest_cmdline.vim259 let matchcount = len('File'->getcompletion('event'))
260 call assert_true(matchcount > 0)
261 call assert_true(groupcount > matchcount)
265 let matchcount = len(getcompletion('', 'menu'))
266 call assert_true(matchcount > 0)
268 call assert_true(matchcount > 0)
269 let matchcount = len(getcompletion('File.', 'menu'))
270 call assert_true(matchcount > 0)
452 let matchcount = len(getcompletion('', name))
453 call assert_true(matchcount >= 0, 'No matches for ' . name)
/vim-8.2.3635/src/
H A Dcmdexpand.c1851 int *matchcount, // return: nr of matches in expand_cmdline() argument
1878 if (ExpandFromContext(xp, file_str, matchcount, matches, options) == FAIL) in expand_cmdline()
1880 *matchcount = 0; in expand_cmdline()