Home
last modified time | relevance | path

Searched refs:greedy (Results 1 – 10 of 10) sorted by relevance

/vim-8.2.3635/runtime/syntax/
H A Djson.vim21 " Separated into a match and region because a region by itself is always greedy
30 " Separated into a match and region because a region by itself is always greedy
H A Drust.vim199 " (greedy for start matches, unlike Rust's tokeniser which is searching for
H A Draku.vim181 " greedy that the "%" " in "+%foo" won't be allowed to match as a sigil,
/vim-8.2.3635/src/
H A Dregexp_nfa.c2196 int greedy = TRUE; // Braces are prefixed with '-' ? in nfa_regpiece() local
2298 greedy = TRUE; in nfa_regpiece()
2303 greedy = FALSE; in nfa_regpiece()
2312 if (greedy) // { { (match the braces) in nfa_regpiece()
2349 quest = (greedy == TRUE? NFA_QUEST : NFA_QUEST_NONGREEDY); in nfa_regpiece()
2362 if (greedy) in nfa_regpiece()
/vim-8.2.3635/src/testdir/
H A Dtest_regexp_latin.vim347 " anti-greedy version of 'a?'
362 " anti-greedy version of 'a*'
380 " Test greedy-ness and lazy-ness
/vim-8.2.3635/runtime/doc/
H A Dpattern.txt647 *non-greedy*
H A Dtags8372 non-greedy pattern.txt /*non-greedy*
H A Dtodo.txt1359 (Chris Paul, 2016 Nov 13) New engine not greedy enough?
H A Dversion7.txt16601 Problem: New regexp engine: Non-greedy multi doesn't work.
H A Dversion8.txt2201 Problem: A non-greedy match followed by a branch is too greedy. (Ingo