aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/testdir/test_textobjects.in
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/testdir/test_textobjects.in')
-rw-r--r--src/nvim/testdir/test_textobjects.in40
1 files changed, 0 insertions, 40 deletions
diff --git a/src/nvim/testdir/test_textobjects.in b/src/nvim/testdir/test_textobjects.in
deleted file mode 100644
index dc48efc67a..0000000000
--- a/src/nvim/testdir/test_textobjects.in
+++ /dev/null
@@ -1,40 +0,0 @@
-Tests for text-objects vim: set ft=vim :
-
-STARTTEST
-:so small.vim
-:if !has('textobjects') | e! test.ok | wq! test.out | endif
-:set nocp viminfo+=nviminfo
-:"
-: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