Home
last modified time | relevance | path

Searched refs:pat2 (Results 1 – 9 of 9) sorted by relevance

/vim-8.2.3635/runtime/plugin/
H A DlogiPat.vim282 fun! s:LP_Or(pat1,pat2) argument
283 " call Dfunc("LP_Or(pat1<".a:pat1."> pat2<".a:pat2.">)")
284 let ret= '\%('.a:pat1.'\|'.a:pat2.'\)'
291 fun! s:LP_And(pat1,pat2) argument
292 " call Dfunc("LP_And(pat1<".a:pat1."> pat2<".a:pat2.">)")
293 let ret= '\%('.a:pat1.'\&'.a:pat2.'\)'
/vim-8.2.3635/src/testdir/
H A Dtest_history.vim189 call histadd('/', 'pat2')
192 call assert_equal(['pat2', 'pat1', ''], g:pat)
211 call histadd('/', 'pat2')
H A Dtest_syntax.vim404 call assert_fails('syntax sync linecont /pat1/ linecont /pat2/', 'E403:')
H A Dtest_quickfix.vim4446 \ {'module' : 'pqr', 'pattern' : 'pat2'}], ' ')
4447 call assert_equal([' 2 pqr:pat2: '],
/vim-8.2.3635/runtime/doc/
H A Dcmdline.txt750 /pat1//pat2/ Find line containing "pat2" after line containing
752 7;/pat2/ Find line containing "pat2", after line 7, leaving
H A Dversion5.txt1135 ":g/pat2/s//pat2/g", causing the number of subs to be reported, used to cause
H A Dtodo.txt5827 ":g/pat1/s/pat2/pat3/cg": 'A' do all remaining replacements, 'Q' don't do
/vim-8.2.3635/src/
H A Devalfunc.c8528 char_u *pat, *pat2 = NULL, *pat3 = NULL; in do_searchpair() local
8556 pat2 = alloc(STRLEN(spat) + STRLEN(epat) + 17); in do_searchpair()
8558 if (pat2 == NULL || pat3 == NULL) in do_searchpair()
8560 sprintf((char *)pat2, "\\m\\(%s\\m\\)\\|\\(%s\\m\\)", spat, epat); in do_searchpair()
8562 STRCPY(pat3, pat2); in do_searchpair()
8633 pat = pat2; // nested, don't search for middle in do_searchpair()
8671 vim_free(pat2); in do_searchpair()
/vim-8.2.3635/runtime/pack/dist/opt/matchit/autoload/
H A Dmatchit.vim506 " a:patterns = "<pat1>,<pat2>,..."