Lines Matching refs:M

271   call assert_equal("l\<C-V>\<C-M>l",
272 \ substitute('lLl', 'L', "\<C-V>\<C-M>", ''))
273 call assert_equal("m\<C-M>m", substitute('mMm', 'M', '\r', ''))
274 call assert_equal("n\<C-V>\<C-M>n",
275 \ substitute('nNn', 'N', "\\\<C-V>\<C-M>", ''))
284 call assert_equal("x\<C-M>x", substitute('xXx', 'X', "\r", ''))
307 call assert_equal("l\<C-V>\<C-M>l",
308 \ substitute('lLl', 'L', "\<C-V>\<C-M>", ''))
309 call assert_equal("m\<C-M>m", substitute('mMm', 'M', '\r', ''))
310 call assert_equal("n\<C-V>\<C-M>n",
311 \ substitute('nNn', 'N', "\\\<C-V>\<C-M>", ''))
317 call assert_equal("t\<C-M>t", substitute('tTt', 'T', "\r", ''))
335 call assert_equal("k\<C-M>k", substitute('kKk', 'K', '\="\r"', ''))
347 …call assert_equal("c\<C-V>\<C-M>c", substitute('cCc', 'C', '\=substitute(submatch(0), ".", "\<C-V>…
348 …call assert_equal("d\<C-V>\<C-M>d", substitute('dDd', 'D', '\=substitute(submatch(0), ".", "\\\<C-…
349 …call assert_equal("e\\\<C-V>\<C-M>e", substitute('eEe', 'E', '\=substitute(submatch(0), ".", "\\\\…
350 …call assert_equal("f\<C-M>f", substitute('fFf', 'F', '\=substitute(submatch(0), ".", "\\r", "")', …
497 \ ['lLl', "s/L/\<C-V>\<C-M>/", ["l\<C-V>", 'l']],
498 \ ['mMm', 's/M/\r/', ['m', 'm']],
499 \ ['nNn', "s/N/\\\<C-V>\<C-M>/", ["n\<C-V>", 'n']],
528 \ ['lLl', "s/L/\<C-V>\<C-M>/", ["l\<C-V>", 'l']],
529 \ ['mMm', 's/M/\r/', ['m', 'm']],
530 \ ['nNn', "s/N/\\\<C-V>\<C-M>/", ["n\<C-V>", 'n']],
550 \ ['cCc', "s/C/\\='\<C-V>\<C-M>'/", ["c\<C-V>", 'c']],
551 \ ['dDd', "s/D/\\='\\\<C-V>\<C-M>'/", ["d\\\<C-V>", 'd']],
552 \ ['eEe', "s/E/\\='\\\\\<C-V>\<C-M>'/", ["e\\\\\<C-V>", 'e']],
574 \ ['cCc', "s/C/\\=substitute(submatch(0), '.', '\<C-V>\<C-M>', '')/",
576 \ ['dDd', "s/D/\\=substitute(submatch(0), '.', '\\\<C-V>\<C-M>', '')/",
578 \ ['eEe', "s/E/\\=substitute(submatch(0), '.', '\\\\\<C-V>\<C-M>', '')/",
635 let tests = [ ["A\<C-V>\<C-M>A", 's/A./\=submatch(0)/', ['A', 'A']],