/*
* Search backwards for unclosed '(', '{', etc..
* Put this position in start_pos.
- * Ignore quotes here.
+ * Ignore quotes here. Keep the "M" flag in 'cpo', as that is what the
+ * user wants.
*/
save_cpo = p_cpo;
- p_cpo = (char_u *)"%";
+ p_cpo = (char_u *)(vim_strchr(p_cpo, CPO_MATCHBSL) != NULL ? "%M" : "%");
while (count-- > 0)
{
if ((pos = findmatch(NULL, what)) == NULL)
test_options.out \
test_qf_title.out \
test_signs.out \
+ test_textobjects.out \
test_utf8.out
.SUFFIXES: .in .out
test_options.out: test_options.in
test_qf_title.out: test_qf_title.in
test_signs.out: test_signs.in
+test_textobjects.out: test_textobjects.in
test_utf8.out: test_utf8.in
test_options.out \
test_qf_title.out \
test_signs.out \
+ test_textobjects.out \
test_utf8.out
SCRIPTS32 = test50.out test70.out
test_options.out \
test_qf_title.out \
test_signs.out \
+ test_textobjects.out \
test_utf8.out
SCRIPTS32 = test50.out test70.out
test_options.out \
test_qf_title.out \
test_signs.out \
+ test_textobjects.out \
test_utf8.out
SCRIPTS_BENCH = bench_re_freeze.out
# Authors: Zoltan Arpadffy, <arpadffy@polarhome.com>
# Sandor Kopanyi, <sandor.kopanyi@mailbox.hu>
#
-# Last change: 2014 Dec 13
+# Last change: 2015 Mar 13
#
# This has been tested on VMS 6.2 to 8.3 on DEC Alpha, VAX and IA64.
# Edit the lines in the Configuration section below to select.
test_options.out \
test_qf_title.out \
test_signs.out \
+ test_textobjects.out \
test_utf8.out
# Known problems:
test_options.out \
test_qf_title.out \
test_signs.out \
+ test_textobjects.out \
test_utf8.out
SCRIPTS_GUI = test16.out
--- /dev/null
+Tests for text-objects vim: set ft=vim :
+
+STARTTEST
+:so small.vim
+:if !has('textobjects') | e! test.ok | wq! test.out | endif
+:set nocompatible
+:"
+:function SelectionOut(data)
+: new
+: call setline(1, a:data)
+: call setreg('"', '')
+: normal! ggfrmavi)y
+: $put =getreg('\"')
+: call setreg('"', '')
+: normal! `afbmavi)y
+: $put =getreg('\"')
+: call setreg('"', '')
+: normal! `afgmavi)y
+: $put =getreg('\"')
+: %yank a
+: q!
+: $put =getreg('a')
+:endfunction
+:"
+:$put ='# Test for vi) without cpo-M'
+:set cpo-=M
+:call SelectionOut('(red \(blue) green)')
+:"
+:$put ='# Test for vi) with cpo-M #1'
+:set cpo+=M
+:call SelectionOut('(red \(blue) green)')
+:"
+:$put ='# Test for vi) with cpo-M #2'
+:set cpo+=M
+:call SelectionOut('(red (blue\) green)')
+:/^Results/,$w test.out
+:qa!
+ENDTEST
+
+Results of text-objects
--- /dev/null
+Results of text-objects
+# Test for vi) without cpo-M
+(red \(blue) green)
+red \(blue
+red \(blue
+
+# Test for vi) with cpo-M #1
+(red \(blue) green)
+red \(blue) green
+blue
+red \(blue) green
+# Test for vi) with cpo-M #2
+(red (blue\) green)
+red (blue\) green
+blue\
+red (blue\) green
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 662,
/**/
661,
/**/