Mercurial > vim
annotate src/testdir/test_visual.vim @ 25038:efdb9608cc11 v8.2.3056
patch 8.2.3056: Vim9: using default value in lambda gives confusing error
Commit: https://github.com/vim/vim/commit/14ded11fcad77ebf41032ec80a95d516ca9acb1c
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Jun 26 19:25:49 2021 +0200
patch 8.2.3056: Vim9: using default value in lambda gives confusing error
Problem: Vim9: using default value in lambda gives confusing error.
Solution: Pass "default_args" on the first pass to get the arguments.
(closes #8455)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 26 Jun 2021 19:30:03 +0200 |
parents | f1121eb17e14 |
children | f397a21b3e4c |
rev | line source |
---|---|
18825
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1 " Tests for various Visual modes. |
11091
ae45d497868f
patch 8.0.0433: beeps when running tests
Christian Brabandt <cb@256bit.org>
parents:
10900
diff
changeset
|
2 |
22502
1503ecd54f8a
patch 8.2.1799: some Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22476
diff
changeset
|
3 source shared.vim |
1503ecd54f8a
patch 8.2.1799: some Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22476
diff
changeset
|
4 |
8401
98955c2ffd9f
commit https://github.com/vim/vim/commit/019b9c644e92742e37efc08fef47c2620a01b6b3
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
5 func Test_block_shift_multibyte() |
10494
1e700d72561d
commit https://github.com/vim/vim/commit/f8eb9c51e5bbd10e59c9b1247f8f6c7f5b77ccd0
Christian Brabandt <cb@256bit.org>
parents:
9618
diff
changeset
|
6 " Uses double-wide character. |
8401
98955c2ffd9f
commit https://github.com/vim/vim/commit/019b9c644e92742e37efc08fef47c2620a01b6b3
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
7 split |
98955c2ffd9f
commit https://github.com/vim/vim/commit/019b9c644e92742e37efc08fef47c2620a01b6b3
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
8 call setline(1, ['xヹxxx', 'ヹxxx']) |
98955c2ffd9f
commit https://github.com/vim/vim/commit/019b9c644e92742e37efc08fef47c2620a01b6b3
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
9 exe "normal 1G0l\<C-V>jl>" |
98955c2ffd9f
commit https://github.com/vim/vim/commit/019b9c644e92742e37efc08fef47c2620a01b6b3
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
10 call assert_equal('x ヹxxx', getline(1)) |
98955c2ffd9f
commit https://github.com/vim/vim/commit/019b9c644e92742e37efc08fef47c2620a01b6b3
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
11 call assert_equal(' ヹxxx', getline(2)) |
98955c2ffd9f
commit https://github.com/vim/vim/commit/019b9c644e92742e37efc08fef47c2620a01b6b3
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
12 q! |
98955c2ffd9f
commit https://github.com/vim/vim/commit/019b9c644e92742e37efc08fef47c2620a01b6b3
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
13 endfunc |
10494
1e700d72561d
commit https://github.com/vim/vim/commit/f8eb9c51e5bbd10e59c9b1247f8f6c7f5b77ccd0
Christian Brabandt <cb@256bit.org>
parents:
9618
diff
changeset
|
14 |
11997
66b677c77467
patch 8.0.0879: crash when shifting with huge number
Christian Brabandt <cb@256bit.org>
parents:
11091
diff
changeset
|
15 func Test_block_shift_overflow() |
66b677c77467
patch 8.0.0879: crash when shifting with huge number
Christian Brabandt <cb@256bit.org>
parents:
11091
diff
changeset
|
16 " This used to cause a multiplication overflow followed by a crash. |
66b677c77467
patch 8.0.0879: crash when shifting with huge number
Christian Brabandt <cb@256bit.org>
parents:
11091
diff
changeset
|
17 new |
66b677c77467
patch 8.0.0879: crash when shifting with huge number
Christian Brabandt <cb@256bit.org>
parents:
11091
diff
changeset
|
18 normal ii |
66b677c77467
patch 8.0.0879: crash when shifting with huge number
Christian Brabandt <cb@256bit.org>
parents:
11091
diff
changeset
|
19 exe "normal \<C-V>876543210>" |
66b677c77467
patch 8.0.0879: crash when shifting with huge number
Christian Brabandt <cb@256bit.org>
parents:
11091
diff
changeset
|
20 q! |
66b677c77467
patch 8.0.0879: crash when shifting with huge number
Christian Brabandt <cb@256bit.org>
parents:
11091
diff
changeset
|
21 endfunc |
66b677c77467
patch 8.0.0879: crash when shifting with huge number
Christian Brabandt <cb@256bit.org>
parents:
11091
diff
changeset
|
22 |
10494
1e700d72561d
commit https://github.com/vim/vim/commit/f8eb9c51e5bbd10e59c9b1247f8f6c7f5b77ccd0
Christian Brabandt <cb@256bit.org>
parents:
9618
diff
changeset
|
23 func Test_dotregister_paste() |
1e700d72561d
commit https://github.com/vim/vim/commit/f8eb9c51e5bbd10e59c9b1247f8f6c7f5b77ccd0
Christian Brabandt <cb@256bit.org>
parents:
9618
diff
changeset
|
24 new |
1e700d72561d
commit https://github.com/vim/vim/commit/f8eb9c51e5bbd10e59c9b1247f8f6c7f5b77ccd0
Christian Brabandt <cb@256bit.org>
parents:
9618
diff
changeset
|
25 exe "norm! ihello world\<esc>" |
1e700d72561d
commit https://github.com/vim/vim/commit/f8eb9c51e5bbd10e59c9b1247f8f6c7f5b77ccd0
Christian Brabandt <cb@256bit.org>
parents:
9618
diff
changeset
|
26 norm! 0ve".p |
1e700d72561d
commit https://github.com/vim/vim/commit/f8eb9c51e5bbd10e59c9b1247f8f6c7f5b77ccd0
Christian Brabandt <cb@256bit.org>
parents:
9618
diff
changeset
|
27 call assert_equal('hello world world', getline(1)) |
1e700d72561d
commit https://github.com/vim/vim/commit/f8eb9c51e5bbd10e59c9b1247f8f6c7f5b77ccd0
Christian Brabandt <cb@256bit.org>
parents:
9618
diff
changeset
|
28 q! |
1e700d72561d
commit https://github.com/vim/vim/commit/f8eb9c51e5bbd10e59c9b1247f8f6c7f5b77ccd0
Christian Brabandt <cb@256bit.org>
parents:
9618
diff
changeset
|
29 endfunc |
10803
065da86ca6d2
patch 8.0.0291: Visual block insertion does not insert in all lines
Christian Brabandt <cb@256bit.org>
parents:
10494
diff
changeset
|
30 |
065da86ca6d2
patch 8.0.0291: Visual block insertion does not insert in all lines
Christian Brabandt <cb@256bit.org>
parents:
10494
diff
changeset
|
31 func Test_Visual_ctrl_o() |
065da86ca6d2
patch 8.0.0291: Visual block insertion does not insert in all lines
Christian Brabandt <cb@256bit.org>
parents:
10494
diff
changeset
|
32 new |
065da86ca6d2
patch 8.0.0291: Visual block insertion does not insert in all lines
Christian Brabandt <cb@256bit.org>
parents:
10494
diff
changeset
|
33 call setline(1, ['one', 'two', 'three']) |
065da86ca6d2
patch 8.0.0291: Visual block insertion does not insert in all lines
Christian Brabandt <cb@256bit.org>
parents:
10494
diff
changeset
|
34 call cursor(1,2) |
065da86ca6d2
patch 8.0.0291: Visual block insertion does not insert in all lines
Christian Brabandt <cb@256bit.org>
parents:
10494
diff
changeset
|
35 set noshowmode |
065da86ca6d2
patch 8.0.0291: Visual block insertion does not insert in all lines
Christian Brabandt <cb@256bit.org>
parents:
10494
diff
changeset
|
36 set tw=0 |
065da86ca6d2
patch 8.0.0291: Visual block insertion does not insert in all lines
Christian Brabandt <cb@256bit.org>
parents:
10494
diff
changeset
|
37 call feedkeys("\<c-v>jjlIa\<c-\>\<c-o>:set tw=88\<cr>\<esc>", 'tx') |
065da86ca6d2
patch 8.0.0291: Visual block insertion does not insert in all lines
Christian Brabandt <cb@256bit.org>
parents:
10494
diff
changeset
|
38 call assert_equal(['oane', 'tawo', 'tahree'], getline(1, 3)) |
065da86ca6d2
patch 8.0.0291: Visual block insertion does not insert in all lines
Christian Brabandt <cb@256bit.org>
parents:
10494
diff
changeset
|
39 call assert_equal(88, &tw) |
065da86ca6d2
patch 8.0.0291: Visual block insertion does not insert in all lines
Christian Brabandt <cb@256bit.org>
parents:
10494
diff
changeset
|
40 set tw& |
065da86ca6d2
patch 8.0.0291: Visual block insertion does not insert in all lines
Christian Brabandt <cb@256bit.org>
parents:
10494
diff
changeset
|
41 bw! |
065da86ca6d2
patch 8.0.0291: Visual block insertion does not insert in all lines
Christian Brabandt <cb@256bit.org>
parents:
10494
diff
changeset
|
42 endfu |
10881
8f6df2f6d2fc
patch 8.0.0330: illegal memory access after "vapo"
Christian Brabandt <cb@256bit.org>
parents:
10803
diff
changeset
|
43 |
8f6df2f6d2fc
patch 8.0.0330: illegal memory access after "vapo"
Christian Brabandt <cb@256bit.org>
parents:
10803
diff
changeset
|
44 func Test_Visual_vapo() |
8f6df2f6d2fc
patch 8.0.0330: illegal memory access after "vapo"
Christian Brabandt <cb@256bit.org>
parents:
10803
diff
changeset
|
45 new |
8f6df2f6d2fc
patch 8.0.0330: illegal memory access after "vapo"
Christian Brabandt <cb@256bit.org>
parents:
10803
diff
changeset
|
46 normal oxx |
8f6df2f6d2fc
patch 8.0.0330: illegal memory access after "vapo"
Christian Brabandt <cb@256bit.org>
parents:
10803
diff
changeset
|
47 normal vapo |
8f6df2f6d2fc
patch 8.0.0330: illegal memory access after "vapo"
Christian Brabandt <cb@256bit.org>
parents:
10803
diff
changeset
|
48 bwipe! |
8f6df2f6d2fc
patch 8.0.0330: illegal memory access after "vapo"
Christian Brabandt <cb@256bit.org>
parents:
10803
diff
changeset
|
49 endfunc |
10900
9b4574d95571
patch 8.0.0339: illegal memory access with vi'
Christian Brabandt <cb@256bit.org>
parents:
10881
diff
changeset
|
50 |
9b4574d95571
patch 8.0.0339: illegal memory access with vi'
Christian Brabandt <cb@256bit.org>
parents:
10881
diff
changeset
|
51 func Test_Visual_inner_quote() |
9b4574d95571
patch 8.0.0339: illegal memory access with vi'
Christian Brabandt <cb@256bit.org>
parents:
10881
diff
changeset
|
52 new |
9b4574d95571
patch 8.0.0339: illegal memory access with vi'
Christian Brabandt <cb@256bit.org>
parents:
10881
diff
changeset
|
53 normal oxX |
9b4574d95571
patch 8.0.0339: illegal memory access with vi'
Christian Brabandt <cb@256bit.org>
parents:
10881
diff
changeset
|
54 normal vki' |
9b4574d95571
patch 8.0.0339: illegal memory access with vi'
Christian Brabandt <cb@256bit.org>
parents:
10881
diff
changeset
|
55 bwipe! |
9b4574d95571
patch 8.0.0339: illegal memory access with vi'
Christian Brabandt <cb@256bit.org>
parents:
10881
diff
changeset
|
56 endfunc |
12019
7d7835ab8b37
patch 8.0.0890: still many old style tests
Christian Brabandt <cb@256bit.org>
parents:
11997
diff
changeset
|
57 |
7d7835ab8b37
patch 8.0.0890: still many old style tests
Christian Brabandt <cb@256bit.org>
parents:
11997
diff
changeset
|
58 " Test for Visual mode not being reset causing E315 error. |
7d7835ab8b37
patch 8.0.0890: still many old style tests
Christian Brabandt <cb@256bit.org>
parents:
11997
diff
changeset
|
59 func TriggerTheProblem() |
7d7835ab8b37
patch 8.0.0890: still many old style tests
Christian Brabandt <cb@256bit.org>
parents:
11997
diff
changeset
|
60 " At this point there is no visual selection because :call reset it. |
7d7835ab8b37
patch 8.0.0890: still many old style tests
Christian Brabandt <cb@256bit.org>
parents:
11997
diff
changeset
|
61 " Let's restore the selection: |
7d7835ab8b37
patch 8.0.0890: still many old style tests
Christian Brabandt <cb@256bit.org>
parents:
11997
diff
changeset
|
62 normal gv |
7d7835ab8b37
patch 8.0.0890: still many old style tests
Christian Brabandt <cb@256bit.org>
parents:
11997
diff
changeset
|
63 '<,'>del _ |
7d7835ab8b37
patch 8.0.0890: still many old style tests
Christian Brabandt <cb@256bit.org>
parents:
11997
diff
changeset
|
64 try |
7d7835ab8b37
patch 8.0.0890: still many old style tests
Christian Brabandt <cb@256bit.org>
parents:
11997
diff
changeset
|
65 exe "normal \<Esc>" |
7d7835ab8b37
patch 8.0.0890: still many old style tests
Christian Brabandt <cb@256bit.org>
parents:
11997
diff
changeset
|
66 catch /^Vim\%((\a\+)\)\=:E315/ |
7d7835ab8b37
patch 8.0.0890: still many old style tests
Christian Brabandt <cb@256bit.org>
parents:
11997
diff
changeset
|
67 echom 'Snap! E315 error!' |
13402
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
68 let g:msg = 'Snap! E315 error!' |
12019
7d7835ab8b37
patch 8.0.0890: still many old style tests
Christian Brabandt <cb@256bit.org>
parents:
11997
diff
changeset
|
69 endtry |
7d7835ab8b37
patch 8.0.0890: still many old style tests
Christian Brabandt <cb@256bit.org>
parents:
11997
diff
changeset
|
70 endfunc |
7d7835ab8b37
patch 8.0.0890: still many old style tests
Christian Brabandt <cb@256bit.org>
parents:
11997
diff
changeset
|
71 |
7d7835ab8b37
patch 8.0.0890: still many old style tests
Christian Brabandt <cb@256bit.org>
parents:
11997
diff
changeset
|
72 func Test_visual_mode_reset() |
7d7835ab8b37
patch 8.0.0890: still many old style tests
Christian Brabandt <cb@256bit.org>
parents:
11997
diff
changeset
|
73 enew |
13402
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
74 let g:msg = "Everything's fine." |
12019
7d7835ab8b37
patch 8.0.0890: still many old style tests
Christian Brabandt <cb@256bit.org>
parents:
11997
diff
changeset
|
75 enew |
7d7835ab8b37
patch 8.0.0890: still many old style tests
Christian Brabandt <cb@256bit.org>
parents:
11997
diff
changeset
|
76 setl buftype=nofile |
7d7835ab8b37
patch 8.0.0890: still many old style tests
Christian Brabandt <cb@256bit.org>
parents:
11997
diff
changeset
|
77 call append(line('$'), 'Delete this line.') |
7d7835ab8b37
patch 8.0.0890: still many old style tests
Christian Brabandt <cb@256bit.org>
parents:
11997
diff
changeset
|
78 |
7d7835ab8b37
patch 8.0.0890: still many old style tests
Christian Brabandt <cb@256bit.org>
parents:
11997
diff
changeset
|
79 " NOTE: this has to be done by a call to a function because executing :del |
7d7835ab8b37
patch 8.0.0890: still many old style tests
Christian Brabandt <cb@256bit.org>
parents:
11997
diff
changeset
|
80 " the ex-way will require the colon operator which resets the visual mode |
7d7835ab8b37
patch 8.0.0890: still many old style tests
Christian Brabandt <cb@256bit.org>
parents:
11997
diff
changeset
|
81 " thus preventing the problem: |
7d7835ab8b37
patch 8.0.0890: still many old style tests
Christian Brabandt <cb@256bit.org>
parents:
11997
diff
changeset
|
82 exe "normal! GV:call TriggerTheProblem()\<CR>" |
7d7835ab8b37
patch 8.0.0890: still many old style tests
Christian Brabandt <cb@256bit.org>
parents:
11997
diff
changeset
|
83 call assert_equal("Everything's fine.", g:msg) |
7d7835ab8b37
patch 8.0.0890: still many old style tests
Christian Brabandt <cb@256bit.org>
parents:
11997
diff
changeset
|
84 endfunc |
12644
1fad9675d8fd
patch 8.0.1200: tests switch the bell off twice
Christian Brabandt <cb@256bit.org>
parents:
12019
diff
changeset
|
85 |
12686
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
86 " Test for visual block shift and tab characters. |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
87 func Test_block_shift_tab() |
24725
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
88 new |
12686
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
89 call append(0, repeat(['one two three'], 5)) |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
90 call cursor(1,1) |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
91 exe "normal i\<C-G>u" |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
92 exe "normal fe\<C-V>4jR\<Esc>ugvr1" |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
93 call assert_equal('on1 two three', getline(1)) |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
94 call assert_equal('on1 two three', getline(2)) |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
95 call assert_equal('on1 two three', getline(5)) |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
96 |
24725
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
97 %d _ |
12686
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
98 call append(0, repeat(['abcdefghijklmnopqrstuvwxyz'], 5)) |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
99 call cursor(1,1) |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
100 exe "normal \<C-V>4jI \<Esc>j<<11|D" |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
101 exe "normal j7|a\<Tab>\<Tab>" |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
102 exe "normal j7|a\<Tab>\<Tab> " |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
103 exe "normal j7|a\<Tab> \<Tab>\<Esc>4k13|\<C-V>4j<" |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
104 call assert_equal(' abcdefghijklmnopqrstuvwxyz', getline(1)) |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
105 call assert_equal('abcdefghij', getline(2)) |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
106 call assert_equal(" abc\<Tab> defghijklmnopqrstuvwxyz", getline(3)) |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
107 call assert_equal(" abc\<Tab> defghijklmnopqrstuvwxyz", getline(4)) |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
108 call assert_equal(" abc\<Tab> defghijklmnopqrstuvwxyz", getline(5)) |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
109 |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
110 %s/\s\+//g |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
111 call cursor(1,1) |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
112 exe "normal \<C-V>4jI \<Esc>j<<" |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
113 exe "normal j7|a\<Tab>\<Tab>" |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
114 exe "normal j7|a\<Tab>\<Tab>\<Tab>\<Tab>\<Tab>" |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
115 exe "normal j7|a\<Tab> \<Tab>\<Tab>\<Esc>4k13|\<C-V>4j3<" |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
116 call assert_equal(' abcdefghijklmnopqrstuvwxyz', getline(1)) |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
117 call assert_equal('abcdefghij', getline(2)) |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
118 call assert_equal(" abc\<Tab> defghijklmnopqrstuvwxyz", getline(3)) |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
119 call assert_equal(" abc\<Tab>\<Tab>defghijklmnopqrstuvwxyz", getline(4)) |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
120 call assert_equal(" abc\<Tab> defghijklmnopqrstuvwxyz", getline(5)) |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
121 |
24725
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
122 " Test for block shift with space characters at the beginning and with |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
123 " 'noexpandtab' and 'expandtab' |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
124 %d _ |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
125 call setline(1, [" 1", " 2", " 3"]) |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
126 setlocal shiftwidth=2 noexpandtab |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
127 exe "normal gg\<C-V>3j>" |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
128 call assert_equal(["\t1", "\t2", "\t3"], getline(1, '$')) |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
129 %d _ |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
130 call setline(1, [" 1", " 2", " 3"]) |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
131 setlocal shiftwidth=2 expandtab |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
132 exe "normal gg\<C-V>3j>" |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
133 call assert_equal([" 1", " 2", " 3"], getline(1, '$')) |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
134 setlocal shiftwidth& |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
135 |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
136 bw! |
12686
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
137 endfunc |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
138 |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
139 " Tests Blockwise Visual when there are TABs before the text. |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
140 func Test_blockwise_visual() |
24725
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
141 new |
12686
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
142 call append(0, ['123456', |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
143 \ '234567', |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
144 \ '345678', |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
145 \ '', |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
146 \ 'test text test tex start here', |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
147 \ "\t\tsome text", |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
148 \ "\t\ttest text", |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
149 \ 'test text']) |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
150 call cursor(1,1) |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
151 exe "normal /start here$\<CR>" |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
152 exe 'normal "by$' . "\<C-V>jjlld" |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
153 exe "normal /456$\<CR>" |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
154 exe "normal \<C-V>jj" . '"bP' |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
155 call assert_equal(['123start here56', |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
156 \ '234start here67', |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
157 \ '345start here78', |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
158 \ '', |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
159 \ 'test text test tex rt here', |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
160 \ "\t\tsomext", |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
161 \ "\t\ttesext"], getline(1, 7)) |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
162 |
24725
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
163 bw! |
12686
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
164 endfunc |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
165 |
13978
81c324144452
patch 8.1.0007: no test for "o" and "O" in Visual block mode
Christian Brabandt <cb@256bit.org>
parents:
13410
diff
changeset
|
166 " Test swapping corners in blockwise visual mode with o and O |
81c324144452
patch 8.1.0007: no test for "o" and "O" in Visual block mode
Christian Brabandt <cb@256bit.org>
parents:
13410
diff
changeset
|
167 func Test_blockwise_visual_o_O() |
24725
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
168 new |
13978
81c324144452
patch 8.1.0007: no test for "o" and "O" in Visual block mode
Christian Brabandt <cb@256bit.org>
parents:
13410
diff
changeset
|
169 |
81c324144452
patch 8.1.0007: no test for "o" and "O" in Visual block mode
Christian Brabandt <cb@256bit.org>
parents:
13410
diff
changeset
|
170 exe "norm! 10i.\<Esc>Y4P3lj\<C-V>4l2jr " |
81c324144452
patch 8.1.0007: no test for "o" and "O" in Visual block mode
Christian Brabandt <cb@256bit.org>
parents:
13410
diff
changeset
|
171 exe "norm! gvO\<Esc>ra" |
81c324144452
patch 8.1.0007: no test for "o" and "O" in Visual block mode
Christian Brabandt <cb@256bit.org>
parents:
13410
diff
changeset
|
172 exe "norm! gvO\<Esc>rb" |
81c324144452
patch 8.1.0007: no test for "o" and "O" in Visual block mode
Christian Brabandt <cb@256bit.org>
parents:
13410
diff
changeset
|
173 exe "norm! gvo\<C-c>rc" |
81c324144452
patch 8.1.0007: no test for "o" and "O" in Visual block mode
Christian Brabandt <cb@256bit.org>
parents:
13410
diff
changeset
|
174 exe "norm! gvO\<C-c>rd" |
19625
f70a3c1000bb
patch 8.2.0369: various Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
19613
diff
changeset
|
175 set selection=exclusive |
f70a3c1000bb
patch 8.2.0369: various Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
19613
diff
changeset
|
176 exe "norm! gvOo\<C-c>re" |
f70a3c1000bb
patch 8.2.0369: various Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
19613
diff
changeset
|
177 call assert_equal('...a be.', getline(4)) |
f70a3c1000bb
patch 8.2.0369: various Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
19613
diff
changeset
|
178 exe "norm! gvOO\<C-c>rf" |
f70a3c1000bb
patch 8.2.0369: various Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
19613
diff
changeset
|
179 set selection& |
13978
81c324144452
patch 8.1.0007: no test for "o" and "O" in Visual block mode
Christian Brabandt <cb@256bit.org>
parents:
13410
diff
changeset
|
180 |
81c324144452
patch 8.1.0007: no test for "o" and "O" in Visual block mode
Christian Brabandt <cb@256bit.org>
parents:
13410
diff
changeset
|
181 call assert_equal(['..........', |
81c324144452
patch 8.1.0007: no test for "o" and "O" in Visual block mode
Christian Brabandt <cb@256bit.org>
parents:
13410
diff
changeset
|
182 \ '...c d..', |
81c324144452
patch 8.1.0007: no test for "o" and "O" in Visual block mode
Christian Brabandt <cb@256bit.org>
parents:
13410
diff
changeset
|
183 \ '... ..', |
19625
f70a3c1000bb
patch 8.2.0369: various Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
19613
diff
changeset
|
184 \ '...a bf.', |
13978
81c324144452
patch 8.1.0007: no test for "o" and "O" in Visual block mode
Christian Brabandt <cb@256bit.org>
parents:
13410
diff
changeset
|
185 \ '..........'], getline(1, '$')) |
81c324144452
patch 8.1.0007: no test for "o" and "O" in Visual block mode
Christian Brabandt <cb@256bit.org>
parents:
13410
diff
changeset
|
186 |
24725
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
187 bw! |
13978
81c324144452
patch 8.1.0007: no test for "o" and "O" in Visual block mode
Christian Brabandt <cb@256bit.org>
parents:
13410
diff
changeset
|
188 endfun |
81c324144452
patch 8.1.0007: no test for "o" and "O" in Visual block mode
Christian Brabandt <cb@256bit.org>
parents:
13410
diff
changeset
|
189 |
12686
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
190 " Test Virtual replace mode. |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
191 func Test_virtual_replace() |
13410
c571356c65bd
patch 8.0.1579: virtual replace test fails in GUI
Christian Brabandt <cb@256bit.org>
parents:
13406
diff
changeset
|
192 if exists('&t_kD') |
c571356c65bd
patch 8.0.1579: virtual replace test fails in GUI
Christian Brabandt <cb@256bit.org>
parents:
13406
diff
changeset
|
193 let save_t_kD = &t_kD |
c571356c65bd
patch 8.0.1579: virtual replace test fails in GUI
Christian Brabandt <cb@256bit.org>
parents:
13406
diff
changeset
|
194 endif |
c571356c65bd
patch 8.0.1579: virtual replace test fails in GUI
Christian Brabandt <cb@256bit.org>
parents:
13406
diff
changeset
|
195 if exists('&t_kb') |
c571356c65bd
patch 8.0.1579: virtual replace test fails in GUI
Christian Brabandt <cb@256bit.org>
parents:
13406
diff
changeset
|
196 let save_t_kb = &t_kb |
c571356c65bd
patch 8.0.1579: virtual replace test fails in GUI
Christian Brabandt <cb@256bit.org>
parents:
13406
diff
changeset
|
197 endif |
12686
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
198 exe "set t_kD=\<C-V>x7f t_kb=\<C-V>x08" |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
199 enew! |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
200 exe "normal a\nabcdefghi\njk\tlmn\n opq rst\n\<C-D>uvwxyz" |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
201 call cursor(1,1) |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
202 set ai bs=2 |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
203 exe "normal gR0\<C-D> 1\nA\nBCDEFGHIJ\n\tKL\nMNO\nPQR" |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
204 call assert_equal([' 1', |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
205 \ ' A', |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
206 \ ' BCDEFGHIJ', |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
207 \ ' KL', |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
208 \ ' MNO', |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
209 \ ' PQR', |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
210 \ ], getline(1, 6)) |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
211 normal G |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
212 mark a |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
213 exe "normal o0\<C-D>\nabcdefghi\njk\tlmn\n opq\trst\n\<C-D>uvwxyz\n" |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
214 exe "normal 'ajgR0\<C-D> 1\nA\nBCDEFGHIJ\n\tKL\nMNO\nPQR" . repeat("\<BS>", 29) |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
215 call assert_equal([' 1', |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
216 \ 'abcdefghi', |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
217 \ 'jk lmn', |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
218 \ ' opq rst', |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
219 \ 'uvwxyz'], getline(7, 11)) |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
220 normal G |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
221 exe "normal iab\tcdefghi\tjkl" |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
222 exe "normal 0gRAB......CDEFGHI.J\<Esc>o" |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
223 exe "normal iabcdefghijklmnopqrst\<Esc>0gRAB\tIJKLMNO\tQR" |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
224 call assert_equal(['AB......CDEFGHI.Jkl', |
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
225 \ 'AB IJKLMNO QRst'], getline(12, 13)) |
20941
505d97ea54da
patch 8.2.1022: various parts of code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents:
20199
diff
changeset
|
226 |
505d97ea54da
patch 8.2.1022: various parts of code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents:
20199
diff
changeset
|
227 " Test inserting Tab with 'noexpandtab' and 'softabstop' set to 4 |
505d97ea54da
patch 8.2.1022: various parts of code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents:
20199
diff
changeset
|
228 %d |
505d97ea54da
patch 8.2.1022: various parts of code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents:
20199
diff
changeset
|
229 call setline(1, 'aaaaaaaaaaaaa') |
505d97ea54da
patch 8.2.1022: various parts of code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents:
20199
diff
changeset
|
230 set softtabstop=4 |
505d97ea54da
patch 8.2.1022: various parts of code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents:
20199
diff
changeset
|
231 exe "normal gggR\<Tab>\<Tab>x" |
505d97ea54da
patch 8.2.1022: various parts of code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents:
20199
diff
changeset
|
232 call assert_equal("\txaaaa", getline(1)) |
505d97ea54da
patch 8.2.1022: various parts of code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents:
20199
diff
changeset
|
233 set softtabstop& |
505d97ea54da
patch 8.2.1022: various parts of code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents:
20199
diff
changeset
|
234 |
12686
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
235 enew! |
13406
4e30f3f4cb78
patch 8.0.1577: virtual replace test fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13402
diff
changeset
|
236 set noai bs&vim |
13410
c571356c65bd
patch 8.0.1579: virtual replace test fails in GUI
Christian Brabandt <cb@256bit.org>
parents:
13406
diff
changeset
|
237 if exists('save_t_kD') |
c571356c65bd
patch 8.0.1579: virtual replace test fails in GUI
Christian Brabandt <cb@256bit.org>
parents:
13406
diff
changeset
|
238 let &t_kD = save_t_kD |
c571356c65bd
patch 8.0.1579: virtual replace test fails in GUI
Christian Brabandt <cb@256bit.org>
parents:
13406
diff
changeset
|
239 endif |
c571356c65bd
patch 8.0.1579: virtual replace test fails in GUI
Christian Brabandt <cb@256bit.org>
parents:
13406
diff
changeset
|
240 if exists('save_t_kb') |
c571356c65bd
patch 8.0.1579: virtual replace test fails in GUI
Christian Brabandt <cb@256bit.org>
parents:
13406
diff
changeset
|
241 let &t_kb = save_t_kb |
c571356c65bd
patch 8.0.1579: virtual replace test fails in GUI
Christian Brabandt <cb@256bit.org>
parents:
13406
diff
changeset
|
242 endif |
12686
aa658b33f25a
patch 8.0.1221: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
12644
diff
changeset
|
243 endfunc |
13402
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
244 |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
245 " Test Virtual replace mode. |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
246 func Test_virtual_replace2() |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
247 enew! |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
248 set bs=2 |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
249 exe "normal a\nabcdefghi\njk\tlmn\n opq rst\n\<C-D>uvwxyz" |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
250 call cursor(1,1) |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
251 " Test 1: Test that del deletes the newline |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
252 exe "normal gR0\<del> 1\nA\nBCDEFGHIJ\n\tKL\nMNO\nPQR" |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
253 call assert_equal(['0 1', |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
254 \ 'A', |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
255 \ 'BCDEFGHIJ', |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
256 \ ' KL', |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
257 \ 'MNO', |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
258 \ 'PQR', |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
259 \ ], getline(1, 6)) |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
260 " Test 2: |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
261 " a newline is not deleted, if no newline has been added in virtual replace mode |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
262 %d_ |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
263 call setline(1, ['abcd', 'efgh', 'ijkl']) |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
264 call cursor(2,1) |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
265 exe "norm! gR1234\<cr>5\<bs>\<bs>\<bs>" |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
266 call assert_equal(['abcd', |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
267 \ '123h', |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
268 \ 'ijkl'], getline(1, '$')) |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
269 " Test 3: |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
270 " a newline is deleted, if a newline has been inserted before in virtual replace mode |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
271 %d_ |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
272 call setline(1, ['abcd', 'efgh', 'ijkl']) |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
273 call cursor(2,1) |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
274 exe "norm! gR1234\<cr>\<cr>56\<bs>\<bs>\<bs>" |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
275 call assert_equal(['abcd', |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
276 \ '1234', |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
277 \ 'ijkl'], getline(1, '$')) |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
278 " Test 4: |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
279 " delete add a newline, delete it, add it again and check undo |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
280 %d_ |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
281 call setline(1, ['abcd', 'efgh', 'ijkl']) |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
282 call cursor(2,1) |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
283 " break undo sequence explicitly |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
284 let &ul = &ul |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
285 exe "norm! gR1234\<cr>\<bs>\<del>56\<cr>" |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
286 let &ul = &ul |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
287 call assert_equal(['abcd', |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
288 \ '123456', |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
289 \ ''], getline(1, '$')) |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
290 norm! u |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
291 call assert_equal(['abcd', |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
292 \ 'efgh', |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
293 \ 'ijkl'], getline(1, '$')) |
19852
12518b40c161
patch 8.2.0482: channel and sandbox code not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
19738
diff
changeset
|
294 |
12518b40c161
patch 8.2.0482: channel and sandbox code not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
19738
diff
changeset
|
295 " Test for truncating spaces in a newly added line using 'autoindent' if |
12518b40c161
patch 8.2.0482: channel and sandbox code not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
19738
diff
changeset
|
296 " characters are not added to that line. |
12518b40c161
patch 8.2.0482: channel and sandbox code not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
19738
diff
changeset
|
297 %d_ |
12518b40c161
patch 8.2.0482: channel and sandbox code not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
19738
diff
changeset
|
298 call setline(1, [' app', ' bee', ' cat']) |
12518b40c161
patch 8.2.0482: channel and sandbox code not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
19738
diff
changeset
|
299 setlocal autoindent |
12518b40c161
patch 8.2.0482: channel and sandbox code not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
19738
diff
changeset
|
300 exe "normal gg$gRt\n\nr" |
12518b40c161
patch 8.2.0482: channel and sandbox code not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
19738
diff
changeset
|
301 call assert_equal([' apt', '', ' rat'], getline(1, '$')) |
12518b40c161
patch 8.2.0482: channel and sandbox code not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
19738
diff
changeset
|
302 |
13402
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
303 " clean up |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
304 %d_ |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
305 set bs&vim |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
12686
diff
changeset
|
306 endfunc |
15359
bdf5f546eba0
patch 8.1.0687: sentence text object in Visual mode is not tested
Bram Moolenaar <Bram@vim.org>
parents:
13978
diff
changeset
|
307 |
15462
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
308 func Test_Visual_word_textobject() |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
309 new |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
310 call setline(1, ['First sentence. Second sentence.']) |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
311 |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
312 " When start and end of visual area are identical, 'aw' or 'iw' select |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
313 " the whole word. |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
314 norm! 1go2fcvawy |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
315 call assert_equal('Second ', @") |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
316 norm! 1go2fcviwy |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
317 call assert_equal('Second', @") |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
318 |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
319 " When start and end of visual area are not identical, 'aw' or 'iw' |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
320 " extend the word in direction of the end of the visual area. |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
321 norm! 1go2fcvlawy |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
322 call assert_equal('cond ', @") |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
323 norm! gv2awy |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
324 call assert_equal('cond sentence.', @") |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
325 |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
326 norm! 1go2fcvliwy |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
327 call assert_equal('cond', @") |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
328 norm! gv2iwy |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
329 call assert_equal('cond sentence', @") |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
330 |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
331 " Extend visual area in opposite direction. |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
332 norm! 1go2fcvhawy |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
333 call assert_equal(' Sec', @") |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
334 norm! gv2awy |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
335 call assert_equal(' sentence. Sec', @") |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
336 |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
337 norm! 1go2fcvhiwy |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
338 call assert_equal('Sec', @") |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
339 norm! gv2iwy |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
340 call assert_equal('. Sec', @") |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
341 |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
342 bwipe! |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
343 endfunc |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
344 |
15359
bdf5f546eba0
patch 8.1.0687: sentence text object in Visual mode is not tested
Bram Moolenaar <Bram@vim.org>
parents:
13978
diff
changeset
|
345 func Test_Visual_sentence_textobject() |
bdf5f546eba0
patch 8.1.0687: sentence text object in Visual mode is not tested
Bram Moolenaar <Bram@vim.org>
parents:
13978
diff
changeset
|
346 new |
15462
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
347 call setline(1, ['First sentence. Second sentence. Third', 'sentence. Fourth sentence']) |
15359
bdf5f546eba0
patch 8.1.0687: sentence text object in Visual mode is not tested
Bram Moolenaar <Bram@vim.org>
parents:
13978
diff
changeset
|
348 |
bdf5f546eba0
patch 8.1.0687: sentence text object in Visual mode is not tested
Bram Moolenaar <Bram@vim.org>
parents:
13978
diff
changeset
|
349 " When start and end of visual area are identical, 'as' or 'is' select |
bdf5f546eba0
patch 8.1.0687: sentence text object in Visual mode is not tested
Bram Moolenaar <Bram@vim.org>
parents:
13978
diff
changeset
|
350 " the whole sentence. |
bdf5f546eba0
patch 8.1.0687: sentence text object in Visual mode is not tested
Bram Moolenaar <Bram@vim.org>
parents:
13978
diff
changeset
|
351 norm! 1gofdvasy |
bdf5f546eba0
patch 8.1.0687: sentence text object in Visual mode is not tested
Bram Moolenaar <Bram@vim.org>
parents:
13978
diff
changeset
|
352 call assert_equal('Second sentence. ', @") |
bdf5f546eba0
patch 8.1.0687: sentence text object in Visual mode is not tested
Bram Moolenaar <Bram@vim.org>
parents:
13978
diff
changeset
|
353 norm! 1gofdvisy |
bdf5f546eba0
patch 8.1.0687: sentence text object in Visual mode is not tested
Bram Moolenaar <Bram@vim.org>
parents:
13978
diff
changeset
|
354 call assert_equal('Second sentence.', @") |
bdf5f546eba0
patch 8.1.0687: sentence text object in Visual mode is not tested
Bram Moolenaar <Bram@vim.org>
parents:
13978
diff
changeset
|
355 |
bdf5f546eba0
patch 8.1.0687: sentence text object in Visual mode is not tested
Bram Moolenaar <Bram@vim.org>
parents:
13978
diff
changeset
|
356 " When start and end of visual area are not identical, 'as' or 'is' |
bdf5f546eba0
patch 8.1.0687: sentence text object in Visual mode is not tested
Bram Moolenaar <Bram@vim.org>
parents:
13978
diff
changeset
|
357 " extend the sentence in direction of the end of the visual area. |
bdf5f546eba0
patch 8.1.0687: sentence text object in Visual mode is not tested
Bram Moolenaar <Bram@vim.org>
parents:
13978
diff
changeset
|
358 norm! 1gofdvlasy |
bdf5f546eba0
patch 8.1.0687: sentence text object in Visual mode is not tested
Bram Moolenaar <Bram@vim.org>
parents:
13978
diff
changeset
|
359 call assert_equal('d sentence. ', @") |
bdf5f546eba0
patch 8.1.0687: sentence text object in Visual mode is not tested
Bram Moolenaar <Bram@vim.org>
parents:
13978
diff
changeset
|
360 norm! gvasy |
bdf5f546eba0
patch 8.1.0687: sentence text object in Visual mode is not tested
Bram Moolenaar <Bram@vim.org>
parents:
13978
diff
changeset
|
361 call assert_equal("d sentence. Third\nsentence. ", @") |
bdf5f546eba0
patch 8.1.0687: sentence text object in Visual mode is not tested
Bram Moolenaar <Bram@vim.org>
parents:
13978
diff
changeset
|
362 |
bdf5f546eba0
patch 8.1.0687: sentence text object in Visual mode is not tested
Bram Moolenaar <Bram@vim.org>
parents:
13978
diff
changeset
|
363 norm! 1gofdvlisy |
bdf5f546eba0
patch 8.1.0687: sentence text object in Visual mode is not tested
Bram Moolenaar <Bram@vim.org>
parents:
13978
diff
changeset
|
364 call assert_equal('d sentence.', @") |
bdf5f546eba0
patch 8.1.0687: sentence text object in Visual mode is not tested
Bram Moolenaar <Bram@vim.org>
parents:
13978
diff
changeset
|
365 norm! gvisy |
bdf5f546eba0
patch 8.1.0687: sentence text object in Visual mode is not tested
Bram Moolenaar <Bram@vim.org>
parents:
13978
diff
changeset
|
366 call assert_equal('d sentence. ', @") |
bdf5f546eba0
patch 8.1.0687: sentence text object in Visual mode is not tested
Bram Moolenaar <Bram@vim.org>
parents:
13978
diff
changeset
|
367 norm! gvisy |
bdf5f546eba0
patch 8.1.0687: sentence text object in Visual mode is not tested
Bram Moolenaar <Bram@vim.org>
parents:
13978
diff
changeset
|
368 call assert_equal("d sentence. Third\nsentence.", @") |
bdf5f546eba0
patch 8.1.0687: sentence text object in Visual mode is not tested
Bram Moolenaar <Bram@vim.org>
parents:
13978
diff
changeset
|
369 |
bdf5f546eba0
patch 8.1.0687: sentence text object in Visual mode is not tested
Bram Moolenaar <Bram@vim.org>
parents:
13978
diff
changeset
|
370 " Extend visual area in opposite direction. |
bdf5f546eba0
patch 8.1.0687: sentence text object in Visual mode is not tested
Bram Moolenaar <Bram@vim.org>
parents:
13978
diff
changeset
|
371 norm! 1gofdvhasy |
bdf5f546eba0
patch 8.1.0687: sentence text object in Visual mode is not tested
Bram Moolenaar <Bram@vim.org>
parents:
13978
diff
changeset
|
372 call assert_equal(' Second', @") |
bdf5f546eba0
patch 8.1.0687: sentence text object in Visual mode is not tested
Bram Moolenaar <Bram@vim.org>
parents:
13978
diff
changeset
|
373 norm! gvasy |
bdf5f546eba0
patch 8.1.0687: sentence text object in Visual mode is not tested
Bram Moolenaar <Bram@vim.org>
parents:
13978
diff
changeset
|
374 call assert_equal("First sentence. Second", @") |
bdf5f546eba0
patch 8.1.0687: sentence text object in Visual mode is not tested
Bram Moolenaar <Bram@vim.org>
parents:
13978
diff
changeset
|
375 |
bdf5f546eba0
patch 8.1.0687: sentence text object in Visual mode is not tested
Bram Moolenaar <Bram@vim.org>
parents:
13978
diff
changeset
|
376 norm! 1gofdvhisy |
bdf5f546eba0
patch 8.1.0687: sentence text object in Visual mode is not tested
Bram Moolenaar <Bram@vim.org>
parents:
13978
diff
changeset
|
377 call assert_equal('Second', @") |
bdf5f546eba0
patch 8.1.0687: sentence text object in Visual mode is not tested
Bram Moolenaar <Bram@vim.org>
parents:
13978
diff
changeset
|
378 norm! gvisy |
bdf5f546eba0
patch 8.1.0687: sentence text object in Visual mode is not tested
Bram Moolenaar <Bram@vim.org>
parents:
13978
diff
changeset
|
379 call assert_equal(' Second', @") |
bdf5f546eba0
patch 8.1.0687: sentence text object in Visual mode is not tested
Bram Moolenaar <Bram@vim.org>
parents:
13978
diff
changeset
|
380 norm! gvisy |
bdf5f546eba0
patch 8.1.0687: sentence text object in Visual mode is not tested
Bram Moolenaar <Bram@vim.org>
parents:
13978
diff
changeset
|
381 call assert_equal('First sentence. Second', @") |
bdf5f546eba0
patch 8.1.0687: sentence text object in Visual mode is not tested
Bram Moolenaar <Bram@vim.org>
parents:
13978
diff
changeset
|
382 |
bdf5f546eba0
patch 8.1.0687: sentence text object in Visual mode is not tested
Bram Moolenaar <Bram@vim.org>
parents:
13978
diff
changeset
|
383 bwipe! |
bdf5f546eba0
patch 8.1.0687: sentence text object in Visual mode is not tested
Bram Moolenaar <Bram@vim.org>
parents:
13978
diff
changeset
|
384 endfunc |
15462
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
385 |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
386 func Test_Visual_paragraph_textobject() |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
387 new |
22476
b3751f4d3b26
patch 8.2.1786: various Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
21923
diff
changeset
|
388 let lines =<< trim [END] |
b3751f4d3b26
patch 8.2.1786: various Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
21923
diff
changeset
|
389 First line. |
b3751f4d3b26
patch 8.2.1786: various Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
21923
diff
changeset
|
390 |
b3751f4d3b26
patch 8.2.1786: various Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
21923
diff
changeset
|
391 Second line. |
b3751f4d3b26
patch 8.2.1786: various Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
21923
diff
changeset
|
392 Third line. |
b3751f4d3b26
patch 8.2.1786: various Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
21923
diff
changeset
|
393 Fourth line. |
b3751f4d3b26
patch 8.2.1786: various Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
21923
diff
changeset
|
394 Fifth line. |
b3751f4d3b26
patch 8.2.1786: various Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
21923
diff
changeset
|
395 |
b3751f4d3b26
patch 8.2.1786: various Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
21923
diff
changeset
|
396 Sixth line. |
b3751f4d3b26
patch 8.2.1786: various Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
21923
diff
changeset
|
397 [END] |
b3751f4d3b26
patch 8.2.1786: various Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
21923
diff
changeset
|
398 call setline(1, lines) |
15462
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
399 |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
400 " When start and end of visual area are identical, 'ap' or 'ip' select |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
401 " the whole paragraph. |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
402 norm! 4ggvapy |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
403 call assert_equal("Second line.\nThird line.\nFourth line.\nFifth line.\n\n", @") |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
404 norm! 4ggvipy |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
405 call assert_equal("Second line.\nThird line.\nFourth line.\nFifth line.\n", @") |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
406 |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
407 " When start and end of visual area are not identical, 'ap' or 'ip' |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
408 " extend the sentence in direction of the end of the visual area. |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
409 " FIXME: actually, it is not sufficient to have different start and |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
410 " end of visual selection, the start line and end line have to differ, |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
411 " which is not consistent with the documentation. |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
412 norm! 4ggVjapy |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
413 call assert_equal("Third line.\nFourth line.\nFifth line.\n\n", @") |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
414 norm! gvapy |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
415 call assert_equal("Third line.\nFourth line.\nFifth line.\n\nSixth line.\n", @") |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
416 norm! 4ggVjipy |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
417 call assert_equal("Third line.\nFourth line.\nFifth line.\n", @") |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
418 norm! gvipy |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
419 call assert_equal("Third line.\nFourth line.\nFifth line.\n\n", @") |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
420 norm! gvipy |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
421 call assert_equal("Third line.\nFourth line.\nFifth line.\n\nSixth line.\n", @") |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
422 |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
423 " Extend visual area in opposite direction. |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
424 norm! 5ggVkapy |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
425 call assert_equal("\nSecond line.\nThird line.\nFourth line.\n", @") |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
426 norm! gvapy |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
427 call assert_equal("First line.\n\nSecond line.\nThird line.\nFourth line.\n", @") |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
428 norm! 5ggVkipy |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
429 call assert_equal("Second line.\nThird line.\nFourth line.\n", @") |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
430 norma gvipy |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
431 call assert_equal("\nSecond line.\nThird line.\nFourth line.\n", @") |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
432 norm! gvipy |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
433 call assert_equal("First line.\n\nSecond line.\nThird line.\nFourth line.\n", @") |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
434 |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
435 bwipe! |
2c44001e7e13
patch 8.1.0739: text objects in not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
15359
diff
changeset
|
436 endfunc |
15985
e91750e8adb5
patch 8.1.0998: getcurpos() unexpectedly changes "curswant"
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
437 |
e91750e8adb5
patch 8.1.0998: getcurpos() unexpectedly changes "curswant"
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
438 func Test_curswant_not_changed() |
e91750e8adb5
patch 8.1.0998: getcurpos() unexpectedly changes "curswant"
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
439 new |
e91750e8adb5
patch 8.1.0998: getcurpos() unexpectedly changes "curswant"
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
440 call setline(1, ['one', 'two']) |
e91750e8adb5
patch 8.1.0998: getcurpos() unexpectedly changes "curswant"
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
441 au InsertLeave * call getcurpos() |
e91750e8adb5
patch 8.1.0998: getcurpos() unexpectedly changes "curswant"
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
442 call feedkeys("gg0\<C-V>jI123 \<Esc>j", 'xt') |
e91750e8adb5
patch 8.1.0998: getcurpos() unexpectedly changes "curswant"
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
443 call assert_equal([0, 2, 1, 0, 1], getcurpos()) |
e91750e8adb5
patch 8.1.0998: getcurpos() unexpectedly changes "curswant"
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
444 |
e91750e8adb5
patch 8.1.0998: getcurpos() unexpectedly changes "curswant"
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
445 bwipe! |
e91750e8adb5
patch 8.1.0998: getcurpos() unexpectedly changes "curswant"
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
446 au! InsertLeave |
e91750e8adb5
patch 8.1.0998: getcurpos() unexpectedly changes "curswant"
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
447 endfunc |
16419
aebcd20a8a3f
patch 8.1.1214: old style tests
Bram Moolenaar <Bram@vim.org>
parents:
15985
diff
changeset
|
448 |
aebcd20a8a3f
patch 8.1.1214: old style tests
Bram Moolenaar <Bram@vim.org>
parents:
15985
diff
changeset
|
449 " Tests for "vaBiB", end could be wrong. |
aebcd20a8a3f
patch 8.1.1214: old style tests
Bram Moolenaar <Bram@vim.org>
parents:
15985
diff
changeset
|
450 func Test_Visual_Block() |
aebcd20a8a3f
patch 8.1.1214: old style tests
Bram Moolenaar <Bram@vim.org>
parents:
15985
diff
changeset
|
451 new |
aebcd20a8a3f
patch 8.1.1214: old style tests
Bram Moolenaar <Bram@vim.org>
parents:
15985
diff
changeset
|
452 a |
aebcd20a8a3f
patch 8.1.1214: old style tests
Bram Moolenaar <Bram@vim.org>
parents:
15985
diff
changeset
|
453 - Bug in "vPPPP" on this text: |
aebcd20a8a3f
patch 8.1.1214: old style tests
Bram Moolenaar <Bram@vim.org>
parents:
15985
diff
changeset
|
454 { |
aebcd20a8a3f
patch 8.1.1214: old style tests
Bram Moolenaar <Bram@vim.org>
parents:
15985
diff
changeset
|
455 cmd; |
aebcd20a8a3f
patch 8.1.1214: old style tests
Bram Moolenaar <Bram@vim.org>
parents:
15985
diff
changeset
|
456 { |
aebcd20a8a3f
patch 8.1.1214: old style tests
Bram Moolenaar <Bram@vim.org>
parents:
15985
diff
changeset
|
457 cmd;\t/* <-- Start cursor here */ |
aebcd20a8a3f
patch 8.1.1214: old style tests
Bram Moolenaar <Bram@vim.org>
parents:
15985
diff
changeset
|
458 { |
aebcd20a8a3f
patch 8.1.1214: old style tests
Bram Moolenaar <Bram@vim.org>
parents:
15985
diff
changeset
|
459 } |
aebcd20a8a3f
patch 8.1.1214: old style tests
Bram Moolenaar <Bram@vim.org>
parents:
15985
diff
changeset
|
460 } |
aebcd20a8a3f
patch 8.1.1214: old style tests
Bram Moolenaar <Bram@vim.org>
parents:
15985
diff
changeset
|
461 } |
aebcd20a8a3f
patch 8.1.1214: old style tests
Bram Moolenaar <Bram@vim.org>
parents:
15985
diff
changeset
|
462 . |
aebcd20a8a3f
patch 8.1.1214: old style tests
Bram Moolenaar <Bram@vim.org>
parents:
15985
diff
changeset
|
463 normal gg |
aebcd20a8a3f
patch 8.1.1214: old style tests
Bram Moolenaar <Bram@vim.org>
parents:
15985
diff
changeset
|
464 call search('Start cursor here') |
aebcd20a8a3f
patch 8.1.1214: old style tests
Bram Moolenaar <Bram@vim.org>
parents:
15985
diff
changeset
|
465 normal vaBiBD |
aebcd20a8a3f
patch 8.1.1214: old style tests
Bram Moolenaar <Bram@vim.org>
parents:
15985
diff
changeset
|
466 call assert_equal(['- Bug in "vPPPP" on this text:', |
aebcd20a8a3f
patch 8.1.1214: old style tests
Bram Moolenaar <Bram@vim.org>
parents:
15985
diff
changeset
|
467 \ "\t{", |
aebcd20a8a3f
patch 8.1.1214: old style tests
Bram Moolenaar <Bram@vim.org>
parents:
15985
diff
changeset
|
468 \ "\t}"], getline(1, '$')) |
aebcd20a8a3f
patch 8.1.1214: old style tests
Bram Moolenaar <Bram@vim.org>
parents:
15985
diff
changeset
|
469 |
aebcd20a8a3f
patch 8.1.1214: old style tests
Bram Moolenaar <Bram@vim.org>
parents:
15985
diff
changeset
|
470 close! |
aebcd20a8a3f
patch 8.1.1214: old style tests
Bram Moolenaar <Bram@vim.org>
parents:
15985
diff
changeset
|
471 endfunc |
18771
50fde4e20790
patch 8.1.2375: no suffucient testing for registers
Bram Moolenaar <Bram@vim.org>
parents:
16419
diff
changeset
|
472 |
50fde4e20790
patch 8.1.2375: no suffucient testing for registers
Bram Moolenaar <Bram@vim.org>
parents:
16419
diff
changeset
|
473 " Test for 'p'ut in visual block mode |
50fde4e20790
patch 8.1.2375: no suffucient testing for registers
Bram Moolenaar <Bram@vim.org>
parents:
16419
diff
changeset
|
474 func Test_visual_block_put() |
24725
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
475 new |
18771
50fde4e20790
patch 8.1.2375: no suffucient testing for registers
Bram Moolenaar <Bram@vim.org>
parents:
16419
diff
changeset
|
476 call append(0, ['One', 'Two', 'Three']) |
50fde4e20790
patch 8.1.2375: no suffucient testing for registers
Bram Moolenaar <Bram@vim.org>
parents:
16419
diff
changeset
|
477 normal gg |
50fde4e20790
patch 8.1.2375: no suffucient testing for registers
Bram Moolenaar <Bram@vim.org>
parents:
16419
diff
changeset
|
478 yank |
50fde4e20790
patch 8.1.2375: no suffucient testing for registers
Bram Moolenaar <Bram@vim.org>
parents:
16419
diff
changeset
|
479 call feedkeys("jl\<C-V>ljp", 'xt') |
50fde4e20790
patch 8.1.2375: no suffucient testing for registers
Bram Moolenaar <Bram@vim.org>
parents:
16419
diff
changeset
|
480 call assert_equal(['One', 'T', 'Tee', 'One', ''], getline(1, '$')) |
24725
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
481 bw! |
18771
50fde4e20790
patch 8.1.2375: no suffucient testing for registers
Bram Moolenaar <Bram@vim.org>
parents:
16419
diff
changeset
|
482 endfunc |
50fde4e20790
patch 8.1.2375: no suffucient testing for registers
Bram Moolenaar <Bram@vim.org>
parents:
16419
diff
changeset
|
483 |
18804
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
484 " Visual modes (v V CTRL-V) followed by an operator; count; repeating |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
485 func Test_visual_mode_op() |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
486 new |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
487 call append(0, '') |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
488 |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
489 call setline(1, 'apple banana cherry') |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
490 call cursor(1, 1) |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
491 normal lvld.l3vd. |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
492 call assert_equal('a y', getline(1)) |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
493 |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
494 call setline(1, ['line 1 line 1', 'line 2 line 2', 'line 3 line 3', |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
495 \ 'line 4 line 4', 'line 5 line 5', 'line 6 line 6']) |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
496 call cursor(1, 1) |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
497 exe "normal Vcnewline\<Esc>j.j2Vd." |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
498 call assert_equal(['newline', 'newline'], getline(1, '$')) |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
499 |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
500 call deletebufline('', 1, '$') |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
501 call setline(1, ['xxxxxxxxxxxxx', 'xxxxxxxxxxxxx', 'xxxxxxxxxxxxx', |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
502 \ 'xxxxxxxxxxxxx']) |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
503 exe "normal \<C-V>jlc \<Esc>l.l2\<C-V>c----\<Esc>l." |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
504 call assert_equal([' --------x', |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
505 \ ' --------x', |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
506 \ 'xxxx--------x', |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
507 \ 'xxxx--------x'], getline(1, '$')) |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
508 |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
509 bwipe! |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
510 endfunc |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
511 |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
512 " Visual mode maps (movement and text object) |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
513 " Visual mode maps; count; repeating |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
514 " - Simple |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
515 " - With an Ex command (custom text object) |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
516 func Test_visual_mode_maps() |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
517 new |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
518 call append(0, '') |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
519 |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
520 func SelectInCaps() |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
521 let [line1, col1] = searchpos('\u', 'bcnW') |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
522 let [line2, col2] = searchpos('.\u', 'nW') |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
523 call setpos("'<", [0, line1, col1, 0]) |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
524 call setpos("'>", [0, line2, col2, 0]) |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
525 normal! gv |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
526 endfunction |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
527 |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
528 vnoremap W /\u/s-1<CR> |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
529 vnoremap iW :<C-U>call SelectInCaps()<CR> |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
530 |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
531 call setline(1, 'KiwiRaspberryDateWatermelonPeach') |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
532 call cursor(1, 1) |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
533 exe "normal vWcNo\<Esc>l.fD2vd." |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
534 call assert_equal('NoNoberryach', getline(1)) |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
535 |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
536 call setline(1, 'JambuRambutanBananaTangerineMango') |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
537 call cursor(1, 1) |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
538 exe "normal llviWc-\<Esc>l.l2vdl." |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
539 call assert_equal('--ago', getline(1)) |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
540 |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
541 vunmap W |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
542 vunmap iW |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
543 bwipe! |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
544 delfunc SelectInCaps |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
545 endfunc |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
546 |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
547 " Operator-pending mode maps (movement and text object) |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
548 " - Simple |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
549 " - With Ex command moving the cursor |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
550 " - With Ex command and Visual selection (custom text object) |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
551 func Test_visual_oper_pending_mode_maps() |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
552 new |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
553 call append(0, '') |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
554 |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
555 func MoveToCap() |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
556 call search('\u', 'W') |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
557 endfunction |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
558 |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
559 func SelectInCaps() |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
560 let [line1, col1] = searchpos('\u', 'bcnW') |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
561 let [line2, col2] = searchpos('.\u', 'nW') |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
562 call setpos("'<", [0, line1, col1, 0]) |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
563 call setpos("'>", [0, line2, col2, 0]) |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
564 normal! gv |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
565 endfunction |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
566 |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
567 onoremap W /\u/<CR> |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
568 onoremap <Leader>W :<C-U>call MoveToCap()<CR> |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
569 onoremap iW :<C-U>call SelectInCaps()<CR> |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
570 |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
571 call setline(1, 'PineappleQuinceLoganberryOrangeGrapefruitKiwiZ') |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
572 call cursor(1, 1) |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
573 exe "normal cW-\<Esc>l.l2.l." |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
574 call assert_equal('----Z', getline(1)) |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
575 |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
576 call setline(1, 'JuniperDurianZ') |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
577 call cursor(1, 1) |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
578 exe "normal g?\WfD." |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
579 call assert_equal('WhavcreQhevnaZ', getline(1)) |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
580 |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
581 call setline(1, 'LemonNectarineZ') |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
582 call cursor(1, 1) |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
583 exe "normal yiWPlciWNew\<Esc>fr." |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
584 call assert_equal('LemonNewNewZ', getline(1)) |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
585 |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
586 ounmap W |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
587 ounmap <Leader>W |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
588 ounmap iW |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
589 bwipe! |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
590 delfunc MoveToCap |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
591 delfunc SelectInCaps |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
592 endfunc |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
593 |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
594 " Patch 7.3.879: Properly abort Operator-pending mode for "dv:<Esc>" etc. |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
595 func Test_op_pend_mode_abort() |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
596 new |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
597 call append(0, '') |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
598 |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
599 call setline(1, ['zzzz', 'zzzz']) |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
600 call cursor(1, 1) |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
601 |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
602 exe "normal dV:\<CR>dv:\<CR>" |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
603 call assert_equal(['zzz'], getline(1, 2)) |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
604 set nomodifiable |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
605 call assert_fails('exe "normal d:\<CR>"', 'E21:') |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
606 set modifiable |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
607 call feedkeys("dv:\<Esc>dV:\<Esc>", 'xt') |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
608 call assert_equal(['zzz'], getline(1, 2)) |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
609 set nomodifiable |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
610 let v:errmsg = '' |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
611 call feedkeys("d:\<Esc>", 'xt') |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
612 call assert_true(v:errmsg !~# '^E21:') |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
613 set modifiable |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
614 |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
615 bwipe! |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
616 endfunc |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
617 |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
618 func Test_characterwise_visual_mode() |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
619 new |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
620 |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
621 " characterwise visual mode: replace last line |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
622 $put ='a' |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
623 let @" = 'x' |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
624 normal v$p |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
625 call assert_equal('x', getline('$')) |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
626 |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
627 " characterwise visual mode: delete middle line |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
628 call deletebufline('', 1, '$') |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
629 call append('$', ['a', 'b', 'c']) |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
630 normal G |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
631 normal kkv$d |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
632 call assert_equal(['', 'b', 'c'], getline(1, '$')) |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
633 |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
634 " characterwise visual mode: delete middle two lines |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
635 call deletebufline('', 1, '$') |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
636 call append('$', ['a', 'b', 'c']) |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
637 normal Gkkvj$d |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
638 call assert_equal(['', 'c'], getline(1, '$')) |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
639 |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
640 " characterwise visual mode: delete last line |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
641 call deletebufline('', 1, '$') |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
642 call append('$', ['a', 'b', 'c']) |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
643 normal Gv$d |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
644 call assert_equal(['', 'a', 'b', ''], getline(1, '$')) |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
645 |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
646 " characterwise visual mode: delete last two lines |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
647 call deletebufline('', 1, '$') |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
648 call append('$', ['a', 'b', 'c']) |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
649 normal Gkvj$d |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
650 call assert_equal(['', 'a', ''], getline(1, '$')) |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
651 |
22476
b3751f4d3b26
patch 8.2.1786: various Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
21923
diff
changeset
|
652 " characterwise visual mode: use a count with the visual mode from the last |
b3751f4d3b26
patch 8.2.1786: various Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
21923
diff
changeset
|
653 " line in the buffer |
b3751f4d3b26
patch 8.2.1786: various Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
21923
diff
changeset
|
654 %d _ |
b3751f4d3b26
patch 8.2.1786: various Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
21923
diff
changeset
|
655 call setline(1, ['one', 'two', 'three', 'four']) |
b3751f4d3b26
patch 8.2.1786: various Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
21923
diff
changeset
|
656 norm! vj$y |
b3751f4d3b26
patch 8.2.1786: various Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
21923
diff
changeset
|
657 norm! G1vy |
b3751f4d3b26
patch 8.2.1786: various Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
21923
diff
changeset
|
658 call assert_equal('four', @") |
b3751f4d3b26
patch 8.2.1786: various Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
21923
diff
changeset
|
659 |
24725
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
660 " characterwise visual mode: replace a single character line and the eol |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
661 %d _ |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
662 call setline(1, "a") |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
663 normal v$rx |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
664 call assert_equal(['x'], getline(1, '$')) |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
665 |
18804
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
666 bwipe! |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
667 endfunc |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
668 |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
669 func Test_visual_mode_put() |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
670 new |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
671 |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
672 " v_p: replace last character with line register at middle line |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
673 call append('$', ['aaa', 'bbb', 'ccc']) |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
674 normal G |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
675 -2yank |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
676 normal k$vp |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
677 call assert_equal(['', 'aaa', 'bb', 'aaa', '', 'ccc'], getline(1, '$')) |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
678 |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
679 " v_p: replace last character with line register at middle line selecting |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
680 " newline |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
681 call deletebufline('', 1, '$') |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
682 call append('$', ['aaa', 'bbb', 'ccc']) |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
683 normal G |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
684 -2yank |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
685 normal k$v$p |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
686 call assert_equal(['', 'aaa', 'bb', 'aaa', 'ccc'], getline(1, '$')) |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
687 |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
688 " v_p: replace last character with line register at last line |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
689 call deletebufline('', 1, '$') |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
690 call append('$', ['aaa', 'bbb', 'ccc']) |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
691 normal G |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
692 -2yank |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
693 normal $vp |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
694 call assert_equal(['', 'aaa', 'bbb', 'cc', 'aaa', ''], getline(1, '$')) |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
695 |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
696 " v_p: replace last character with line register at last line selecting |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
697 " newline |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
698 call deletebufline('', 1, '$') |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
699 call append('$', ['aaa', 'bbb', 'ccc']) |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
700 normal G |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
701 -2yank |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
702 normal $v$p |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
703 call assert_equal(['', 'aaa', 'bbb', 'cc', 'aaa', ''], getline(1, '$')) |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
704 |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
705 bwipe! |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
706 endfunc |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
707 |
19738
0208534b8a84
patch 8.2.0425: code for modeless selection not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
19625
diff
changeset
|
708 func Test_gv_with_exclusive_selection() |
18804
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
709 new |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
710 |
19738
0208534b8a84
patch 8.2.0425: code for modeless selection not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
19625
diff
changeset
|
711 " gv with exclusive selection after an operation |
18804
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
712 call append('$', ['zzz ', 'äà ']) |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
713 set selection=exclusive |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
714 normal Gkv3lyjv3lpgvcxxx |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
715 call assert_equal(['', 'zzz ', 'xxx '], getline(1, '$')) |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
716 |
19738
0208534b8a84
patch 8.2.0425: code for modeless selection not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
19625
diff
changeset
|
717 " gv with exclusive selection without an operation |
18804
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
718 call deletebufline('', 1, '$') |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
719 call append('$', 'zzz ') |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
720 set selection=exclusive |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
721 exe "normal G0v3l\<Esc>gvcxxx" |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
722 call assert_equal(['', 'xxx '], getline(1, '$')) |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
723 |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
724 set selection&vim |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
725 bwipe! |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
726 endfunc |
2d41b63f52de
patch 8.1.2390: test94 is old style, fix 7.4.441 not tested
Bram Moolenaar <Bram@vim.org>
parents:
18771
diff
changeset
|
727 |
18825
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
728 " Tests for the visual block mode commands |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
729 func Test_visual_block_mode() |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
730 new |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
731 call append(0, '') |
19625
f70a3c1000bb
patch 8.2.0369: various Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
19613
diff
changeset
|
732 call setline(1, repeat(['abcdefghijklm'], 5)) |
18825
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
733 call cursor(1, 1) |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
734 |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
735 " Test shift-right of a block |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
736 exe "normal jllll\<C-V>jj>wll\<C-V>jlll>" |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
737 " Test shift-left of a block |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
738 exe "normal G$hhhh\<C-V>kk<" |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
739 " Test block-insert |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
740 exe "normal Gkl\<C-V>kkkIxyz" |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
741 " Test block-replace |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
742 exe "normal Gllll\<C-V>kkklllrq" |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
743 " Test block-change |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
744 exe "normal G$khhh\<C-V>hhkkcmno" |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
745 call assert_equal(['axyzbcdefghijklm', |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
746 \ 'axyzqqqq mno ghijklm', |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
747 \ 'axyzqqqqef mno ghijklm', |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
748 \ 'axyzqqqqefgmnoklm', |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
749 \ 'abcdqqqqijklm'], getline(1, 5)) |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
750 |
19625
f70a3c1000bb
patch 8.2.0369: various Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
19613
diff
changeset
|
751 " Test 'C' to change till the end of the line |
f70a3c1000bb
patch 8.2.0369: various Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
19613
diff
changeset
|
752 call cursor(3, 4) |
f70a3c1000bb
patch 8.2.0369: various Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
19613
diff
changeset
|
753 exe "normal! \<C-V>j3lCooo" |
f70a3c1000bb
patch 8.2.0369: various Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
19613
diff
changeset
|
754 call assert_equal(['axyooo', 'axyooo'], getline(3, 4)) |
f70a3c1000bb
patch 8.2.0369: various Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
19613
diff
changeset
|
755 |
f70a3c1000bb
patch 8.2.0369: various Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
19613
diff
changeset
|
756 " Test 'D' to delete till the end of the line |
f70a3c1000bb
patch 8.2.0369: various Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
19613
diff
changeset
|
757 call cursor(3, 3) |
f70a3c1000bb
patch 8.2.0369: various Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
19613
diff
changeset
|
758 exe "normal! \<C-V>j2lD" |
f70a3c1000bb
patch 8.2.0369: various Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
19613
diff
changeset
|
759 call assert_equal(['ax', 'ax'], getline(3, 4)) |
f70a3c1000bb
patch 8.2.0369: various Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
19613
diff
changeset
|
760 |
24725
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
761 " Test block insert with a short line that ends before the block |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
762 %d _ |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
763 call setline(1, [" one", "a", " two"]) |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
764 exe "normal gg\<C-V>2jIx" |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
765 call assert_equal([" xone", "a", " xtwo"], getline(1, '$')) |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
766 |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
767 " Test block append at EOL with '$' and without '$' |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
768 %d _ |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
769 call setline(1, ["one", "a", "two"]) |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
770 exe "normal gg$\<C-V>2jAx" |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
771 call assert_equal(["onex", "ax", "twox"], getline(1, '$')) |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
772 %d _ |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
773 call setline(1, ["one", "a", "two"]) |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
774 exe "normal gg3l\<C-V>2jAx" |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
775 call assert_equal(["onex", "a x", "twox"], getline(1, '$')) |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
776 |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
777 " Test block replace with an empty line in the middle and use $ to jump to |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
778 " the end of the line. |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
779 %d _ |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
780 call setline(1, ['one', '', 'two']) |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
781 exe "normal gg$\<C-V>2jrx" |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
782 call assert_equal(["onx", "", "twx"], getline(1, '$')) |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
783 |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
784 " Test block replace with an empty line in the middle and move cursor to the |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
785 " end of the line |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
786 %d _ |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
787 call setline(1, ['one', '', 'two']) |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
788 exe "normal gg2l\<C-V>2jrx" |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
789 call assert_equal(["onx", "", "twx"], getline(1, '$')) |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
790 |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
791 " Replace odd number of characters with a multibyte character |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
792 %d _ |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
793 call setline(1, ['abcd', 'efgh']) |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
794 exe "normal ggl\<C-V>2ljr\u1100" |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
795 call assert_equal(["a\u1100 ", "e\u1100 "], getline(1, '$')) |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
796 |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
797 " During visual block append, if the cursor moved outside of the selected |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
798 " range, then the edit should not be applied to the block. |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
799 %d _ |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
800 call setline(1, ['aaa', 'bbb', 'ccc']) |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
801 exe "normal 2G\<C-V>jAx\<Up>" |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
802 call assert_equal(['aaa', 'bxbb', 'ccc'], getline(1, '$')) |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
803 |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
804 " During visual block append, if the cursor is moved before the start of the |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
805 " block, then the new text should be appended there. |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
806 %d _ |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
807 call setline(1, ['aaa', 'bbb', 'ccc']) |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
808 exe "normal $\<C-V>2jA\<Left>x" |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
809 " BUG: Instead of adding x as the third character in all the three lines, |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
810 " 'a' is added in the second and third lines at the end. This bug is not |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
811 " reproducible if this operation is performed manually. |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
812 "call assert_equal(['aaxa', 'bbxb', 'ccxc'], getline(1, '$')) |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
813 call assert_equal(['aaxa', 'bbba', 'ccca'], getline(1, '$')) |
24814
4c5eec1ef612
patch 8.2.2945: some buffer related code is not tested
Bram Moolenaar <Bram@vim.org>
parents:
24800
diff
changeset
|
814 " Repeat the previous test but use 'l' to move the cursor instead of '$' |
4c5eec1ef612
patch 8.2.2945: some buffer related code is not tested
Bram Moolenaar <Bram@vim.org>
parents:
24800
diff
changeset
|
815 call setline(1, ['aaa', 'bbb', 'ccc']) |
4c5eec1ef612
patch 8.2.2945: some buffer related code is not tested
Bram Moolenaar <Bram@vim.org>
parents:
24800
diff
changeset
|
816 exe "normal! gg2l\<C-V>2jA\<Left>x" |
4c5eec1ef612
patch 8.2.2945: some buffer related code is not tested
Bram Moolenaar <Bram@vim.org>
parents:
24800
diff
changeset
|
817 call assert_equal(['aaxa', 'bbxb', 'ccxc'], getline(1, '$')) |
24725
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
818 |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
819 " Change a characterwise motion to a blockwise motion using CTRL-V |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
820 %d _ |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
821 call setline(1, ['123', '456', '789']) |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
822 exe "normal ld\<C-V>j" |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
823 call assert_equal(['13', '46', '789'], getline(1, '$')) |
3cdbce5ba73f
patch 8.2.2901: some operators not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22502
diff
changeset
|
824 |
24756
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
825 " Test from ':help v_b_I_example' |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
826 %d _ |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
827 setlocal tabstop=8 shiftwidth=4 |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
828 let lines =<< trim END |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
829 abcdefghijklmnopqrstuvwxyz |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
830 abc defghijklmnopqrstuvwxyz |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
831 abcdef ghi jklmnopqrstuvwxyz |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
832 abcdefghijklmnopqrstuvwxyz |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
833 END |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
834 call setline(1, lines) |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
835 exe "normal ggfo\<C-V>3jISTRING" |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
836 let expected =<< trim END |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
837 abcdefghijklmnSTRINGopqrstuvwxyz |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
838 abc STRING defghijklmnopqrstuvwxyz |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
839 abcdef ghi STRING jklmnopqrstuvwxyz |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
840 abcdefghijklmnSTRINGopqrstuvwxyz |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
841 END |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
842 call assert_equal(expected, getline(1, '$')) |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
843 |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
844 " Test from ':help v_b_A_example' |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
845 %d _ |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
846 let lines =<< trim END |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
847 abcdefghijklmnopqrstuvwxyz |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
848 abc defghijklmnopqrstuvwxyz |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
849 abcdef ghi jklmnopqrstuvwxyz |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
850 abcdefghijklmnopqrstuvwxyz |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
851 END |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
852 call setline(1, lines) |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
853 exe "normal ggfo\<C-V>3j$ASTRING" |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
854 let expected =<< trim END |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
855 abcdefghijklmnopqrstuvwxyzSTRING |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
856 abc defghijklmnopqrstuvwxyzSTRING |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
857 abcdef ghi jklmnopqrstuvwxyzSTRING |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
858 abcdefghijklmnopqrstuvwxyzSTRING |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
859 END |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
860 call assert_equal(expected, getline(1, '$')) |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
861 |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
862 " Test from ':help v_b_<_example' |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
863 %d _ |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
864 let lines =<< trim END |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
865 abcdefghijklmnopqrstuvwxyz |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
866 abc defghijklmnopqrstuvwxyz |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
867 abcdef ghi jklmnopqrstuvwxyz |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
868 abcdefghijklmnopqrstuvwxyz |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
869 END |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
870 call setline(1, lines) |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
871 exe "normal ggfo\<C-V>3j3l<.." |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
872 let expected =<< trim END |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
873 abcdefghijklmnopqrstuvwxyz |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
874 abc defghijklmnopqrstuvwxyz |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
875 abcdef ghi jklmnopqrstuvwxyz |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
876 abcdefghijklmnopqrstuvwxyz |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
877 END |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
878 call assert_equal(expected, getline(1, '$')) |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
879 |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
880 " Test from ':help v_b_>_example' |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
881 %d _ |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
882 let lines =<< trim END |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
883 abcdefghijklmnopqrstuvwxyz |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
884 abc defghijklmnopqrstuvwxyz |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
885 abcdef ghi jklmnopqrstuvwxyz |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
886 abcdefghijklmnopqrstuvwxyz |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
887 END |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
888 call setline(1, lines) |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
889 exe "normal ggfo\<C-V>3j>.." |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
890 let expected =<< trim END |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
891 abcdefghijklmn opqrstuvwxyz |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
892 abc defghijklmnopqrstuvwxyz |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
893 abcdef ghi jklmnopqrstuvwxyz |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
894 abcdefghijklmn opqrstuvwxyz |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
895 END |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
896 call assert_equal(expected, getline(1, '$')) |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
897 |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
898 " Test from ':help v_b_r_example' |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
899 %d _ |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
900 let lines =<< trim END |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
901 abcdefghijklmnopqrstuvwxyz |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
902 abc defghijklmnopqrstuvwxyz |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
903 abcdef ghi jklmnopqrstuvwxyz |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
904 abcdefghijklmnopqrstuvwxyz |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
905 END |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
906 call setline(1, lines) |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
907 exe "normal ggfo\<C-V>5l3jrX" |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
908 let expected =<< trim END |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
909 abcdefghijklmnXXXXXXuvwxyz |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
910 abc XXXXXXhijklmnopqrstuvwxyz |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
911 abcdef ghi XXXXXX jklmnopqrstuvwxyz |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
912 abcdefghijklmnXXXXXXuvwxyz |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
913 END |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
914 call assert_equal(expected, getline(1, '$')) |
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
915 |
18825
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
916 bwipe! |
24756
ac7ad168caed
patch 8.2.2916: operators are not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
24752
diff
changeset
|
917 set tabstop& shiftwidth& |
18825
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
918 endfunc |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
919 |
24800
b032da736676
patch 8.2.2938: after using motion force from feedkeys() it sticks
Bram Moolenaar <Bram@vim.org>
parents:
24756
diff
changeset
|
920 func Test_visual_force_motion_feedkeys() |
b032da736676
patch 8.2.2938: after using motion force from feedkeys() it sticks
Bram Moolenaar <Bram@vim.org>
parents:
24756
diff
changeset
|
921 onoremap <expr> i- execute('let g:mode = mode(1)')->slice(0, 0) |
b032da736676
patch 8.2.2938: after using motion force from feedkeys() it sticks
Bram Moolenaar <Bram@vim.org>
parents:
24756
diff
changeset
|
922 call feedkeys('dvi-', 'x') |
b032da736676
patch 8.2.2938: after using motion force from feedkeys() it sticks
Bram Moolenaar <Bram@vim.org>
parents:
24756
diff
changeset
|
923 call assert_equal('nov', g:mode) |
b032da736676
patch 8.2.2938: after using motion force from feedkeys() it sticks
Bram Moolenaar <Bram@vim.org>
parents:
24756
diff
changeset
|
924 call feedkeys('di-', 'x') |
b032da736676
patch 8.2.2938: after using motion force from feedkeys() it sticks
Bram Moolenaar <Bram@vim.org>
parents:
24756
diff
changeset
|
925 call assert_equal('no', g:mode) |
b032da736676
patch 8.2.2938: after using motion force from feedkeys() it sticks
Bram Moolenaar <Bram@vim.org>
parents:
24756
diff
changeset
|
926 ounmap i- |
b032da736676
patch 8.2.2938: after using motion force from feedkeys() it sticks
Bram Moolenaar <Bram@vim.org>
parents:
24756
diff
changeset
|
927 endfunc |
b032da736676
patch 8.2.2938: after using motion force from feedkeys() it sticks
Bram Moolenaar <Bram@vim.org>
parents:
24756
diff
changeset
|
928 |
18825
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
929 " Test block-insert using cursor keys for movement |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
930 func Test_visual_block_insert_cursor_keys() |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
931 new |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
932 call append(0, ['aaaaaa', 'bbbbbb', 'cccccc', 'dddddd']) |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
933 call cursor(1, 1) |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
934 |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
935 exe "norm! l\<C-V>jjjlllI\<Right>\<Right> \<Esc>" |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
936 call assert_equal(['aaa aaa', 'bbb bbb', 'ccc ccc', 'ddd ddd'], |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
937 \ getline(1, 4)) |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
938 |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
939 call deletebufline('', 1, '$') |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
940 call setline(1, ['xaaa', 'bbbb', 'cccc', 'dddd']) |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
941 call cursor(1, 1) |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
942 exe "norm! \<C-V>jjjI<>\<Left>p\<Esc>" |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
943 call assert_equal(['<p>xaaa', '<p>bbbb', '<p>cccc', '<p>dddd'], |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
944 \ getline(1, 4)) |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
945 bwipe! |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
946 endfunc |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
947 |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
948 func Test_visual_block_create() |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
949 new |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
950 call append(0, '') |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
951 " Test for Visual block was created with the last <C-v>$ |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
952 call setline(1, ['A23', '4567']) |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
953 call cursor(1, 1) |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
954 exe "norm! l\<C-V>j$Aab\<Esc>" |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
955 call assert_equal(['A23ab', '4567ab'], getline(1, 2)) |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
956 |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
957 " Test for Visual block was created with the middle <C-v>$ (1) |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
958 call deletebufline('', 1, '$') |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
959 call setline(1, ['B23', '4567']) |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
960 call cursor(1, 1) |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
961 exe "norm! l\<C-V>j$hAab\<Esc>" |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
962 call assert_equal(['B23 ab', '4567ab'], getline(1, 2)) |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
963 |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
964 " Test for Visual block was created with the middle <C-v>$ (2) |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
965 call deletebufline('', 1, '$') |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
966 call setline(1, ['C23', '4567']) |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
967 call cursor(1, 1) |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
968 exe "norm! l\<C-V>j$hhAab\<Esc>" |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
969 call assert_equal(['C23ab', '456ab7'], getline(1, 2)) |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
970 bwipe! |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
971 endfunc |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
972 |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
973 " Test for Visual block insert when virtualedit=all |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
974 func Test_virtualedit_visual_block() |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
975 set ve=all |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
976 new |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
977 call append(0, ["\t\tline1", "\t\tline2", "\t\tline3"]) |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
978 call cursor(1, 1) |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
979 exe "norm! 07l\<C-V>jjIx\<Esc>" |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
980 call assert_equal([" x \tline1", |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
981 \ " x \tline2", |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
982 \ " x \tline3"], getline(1, 3)) |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
983 |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
984 " Test for Visual block append when virtualedit=all |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
985 exe "norm! 012l\<C-v>jjAx\<Esc>" |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
986 call assert_equal([' x x line1', |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
987 \ ' x x line2', |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
988 \ ' x x line3'], getline(1, 3)) |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
989 set ve= |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
990 bwipe! |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
991 endfunc |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
992 |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
993 " Test for changing case |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
994 func Test_visual_change_case() |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
995 new |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
996 " gUe must uppercase a whole word, also when ß changes to SS |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
997 exe "normal Gothe youtußeuu end\<Esc>Ypk0wgUe\r" |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
998 " gUfx must uppercase until x, inclusive. |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
999 exe "normal O- youßtußexu -\<Esc>0fogUfx\r" |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1000 " VU must uppercase a whole line |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1001 exe "normal YpkVU\r" |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1002 " same, when it's the last line in the buffer |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1003 exe "normal YPGi111\<Esc>VUddP\r" |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1004 " Uppercase two lines |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1005 exe "normal Oblah di\rdoh dut\<Esc>VkUj\r" |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1006 " Uppercase part of two lines |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1007 exe "normal ddppi333\<Esc>k0i222\<Esc>fyllvjfuUk" |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1008 call assert_equal(['the YOUTUSSEUU end', '- yOUSSTUSSEXu -', |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1009 \ 'THE YOUTUSSEUU END', '111THE YOUTUSSEUU END', 'BLAH DI', 'DOH DUT', |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1010 \ '222the yoUTUSSEUU END', '333THE YOUTUßeuu end'], getline(2, '$')) |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1011 bwipe! |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1012 endfunc |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1013 |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1014 " Test for Visual replace using Enter or NL |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1015 func Test_visual_replace_crnl() |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1016 new |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1017 exe "normal G3o123456789\e2k05l\<C-V>2jr\r" |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1018 exe "normal G3o98765\e2k02l\<C-V>2jr\<C-V>\r\n" |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1019 exe "normal G3o123456789\e2k05l\<C-V>2jr\n" |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1020 exe "normal G3o98765\e2k02l\<C-V>2jr\<C-V>\n" |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1021 call assert_equal(['12345', '789', '12345', '789', '12345', '789', "98\r65", |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1022 \ "98\r65", "98\r65", '12345', '789', '12345', '789', '12345', '789', |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1023 \ "98\n65", "98\n65", "98\n65"], getline(2, '$')) |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1024 bwipe! |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1025 endfunc |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1026 |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1027 func Test_ve_block_curpos() |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1028 new |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1029 " Test cursor position. When ve=block and Visual block mode and $gj |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1030 call append(0, ['12345', '789']) |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1031 call cursor(1, 3) |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1032 set virtualedit=block |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1033 exe "norm! \<C-V>$gj\<Esc>" |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1034 call assert_equal([0, 2, 4, 0], getpos("'>")) |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1035 set virtualedit= |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1036 bwipe! |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1037 endfunc |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1038 |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1039 " Test for block_insert when replacing spaces in front of the a with tabs |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1040 func Test_block_insert_replace_tabs() |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1041 new |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1042 set ts=8 sts=4 sw=4 |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1043 call append(0, ["#define BO_ALL\t 0x0001", |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1044 \ "#define BO_BS\t 0x0002", |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1045 \ "#define BO_CRSR\t 0x0004"]) |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1046 call cursor(1, 1) |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1047 exe "norm! f0\<C-V>2jI\<tab>\<esc>" |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1048 call assert_equal([ |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1049 \ "#define BO_ALL\t\t0x0001", |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1050 \ "#define BO_BS\t \t0x0002", |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1051 \ "#define BO_CRSR\t \t0x0004", ''], getline(1, '$')) |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1052 set ts& sts& sw& |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1053 bwipe! |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1054 endfunc |
70f1e352d599
patch 8.1.2400: test39 is old style
Bram Moolenaar <Bram@vim.org>
parents:
18804
diff
changeset
|
1055 |
19425
67fbe280a502
patch 8.2.0270: some code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents:
18825
diff
changeset
|
1056 " Test for * register in : |
67fbe280a502
patch 8.2.0270: some code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents:
18825
diff
changeset
|
1057 func Test_star_register() |
67fbe280a502
patch 8.2.0270: some code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents:
18825
diff
changeset
|
1058 call assert_fails('*bfirst', 'E16:') |
67fbe280a502
patch 8.2.0270: some code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents:
18825
diff
changeset
|
1059 new |
67fbe280a502
patch 8.2.0270: some code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents:
18825
diff
changeset
|
1060 call setline(1, ['foo', 'bar', 'baz', 'qux']) |
67fbe280a502
patch 8.2.0270: some code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents:
18825
diff
changeset
|
1061 exe "normal jVj\<ESC>" |
67fbe280a502
patch 8.2.0270: some code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents:
18825
diff
changeset
|
1062 *yank r |
67fbe280a502
patch 8.2.0270: some code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents:
18825
diff
changeset
|
1063 call assert_equal("bar\nbaz\n", @r) |
67fbe280a502
patch 8.2.0270: some code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents:
18825
diff
changeset
|
1064 |
67fbe280a502
patch 8.2.0270: some code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents:
18825
diff
changeset
|
1065 delmarks < > |
67fbe280a502
patch 8.2.0270: some code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents:
18825
diff
changeset
|
1066 call assert_fails('*yank', 'E20:') |
67fbe280a502
patch 8.2.0270: some code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents:
18825
diff
changeset
|
1067 close! |
67fbe280a502
patch 8.2.0270: some code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents:
18825
diff
changeset
|
1068 endfunc |
67fbe280a502
patch 8.2.0270: some code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents:
18825
diff
changeset
|
1069 |
19613
9c15be376631
patch 8.2.0363: some Normal mode commands not tested
Bram Moolenaar <Bram@vim.org>
parents:
19425
diff
changeset
|
1070 " Test for changing text in visual mode with 'exclusive' selection |
9c15be376631
patch 8.2.0363: some Normal mode commands not tested
Bram Moolenaar <Bram@vim.org>
parents:
19425
diff
changeset
|
1071 func Test_exclusive_selection() |
9c15be376631
patch 8.2.0363: some Normal mode commands not tested
Bram Moolenaar <Bram@vim.org>
parents:
19425
diff
changeset
|
1072 new |
9c15be376631
patch 8.2.0363: some Normal mode commands not tested
Bram Moolenaar <Bram@vim.org>
parents:
19425
diff
changeset
|
1073 call setline(1, ['one', 'two']) |
9c15be376631
patch 8.2.0363: some Normal mode commands not tested
Bram Moolenaar <Bram@vim.org>
parents:
19425
diff
changeset
|
1074 set selection=exclusive |
9c15be376631
patch 8.2.0363: some Normal mode commands not tested
Bram Moolenaar <Bram@vim.org>
parents:
19425
diff
changeset
|
1075 call feedkeys("vwcabc", 'xt') |
9c15be376631
patch 8.2.0363: some Normal mode commands not tested
Bram Moolenaar <Bram@vim.org>
parents:
19425
diff
changeset
|
1076 call assert_equal('abctwo', getline(1)) |
9c15be376631
patch 8.2.0363: some Normal mode commands not tested
Bram Moolenaar <Bram@vim.org>
parents:
19425
diff
changeset
|
1077 call setline(1, ["\tone"]) |
9c15be376631
patch 8.2.0363: some Normal mode commands not tested
Bram Moolenaar <Bram@vim.org>
parents:
19425
diff
changeset
|
1078 set virtualedit=all |
9c15be376631
patch 8.2.0363: some Normal mode commands not tested
Bram Moolenaar <Bram@vim.org>
parents:
19425
diff
changeset
|
1079 call feedkeys('0v2lcl', 'xt') |
9c15be376631
patch 8.2.0363: some Normal mode commands not tested
Bram Moolenaar <Bram@vim.org>
parents:
19425
diff
changeset
|
1080 call assert_equal('l one', getline(1)) |
9c15be376631
patch 8.2.0363: some Normal mode commands not tested
Bram Moolenaar <Bram@vim.org>
parents:
19425
diff
changeset
|
1081 set virtualedit& |
9c15be376631
patch 8.2.0363: some Normal mode commands not tested
Bram Moolenaar <Bram@vim.org>
parents:
19425
diff
changeset
|
1082 set selection& |
9c15be376631
patch 8.2.0363: some Normal mode commands not tested
Bram Moolenaar <Bram@vim.org>
parents:
19425
diff
changeset
|
1083 close! |
9c15be376631
patch 8.2.0363: some Normal mode commands not tested
Bram Moolenaar <Bram@vim.org>
parents:
19425
diff
changeset
|
1084 endfunc |
9c15be376631
patch 8.2.0363: some Normal mode commands not tested
Bram Moolenaar <Bram@vim.org>
parents:
19425
diff
changeset
|
1085 |
22502
1503ecd54f8a
patch 8.2.1799: some Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22476
diff
changeset
|
1086 " Test for starting linewise visual with a count. |
1503ecd54f8a
patch 8.2.1799: some Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22476
diff
changeset
|
1087 " This test needs to be run without any previous visual mode. Otherwise the |
1503ecd54f8a
patch 8.2.1799: some Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22476
diff
changeset
|
1088 " count will use the count from the previous visual mode. |
1503ecd54f8a
patch 8.2.1799: some Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22476
diff
changeset
|
1089 func Test_linewise_visual_with_count() |
1503ecd54f8a
patch 8.2.1799: some Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22476
diff
changeset
|
1090 let after =<< trim [CODE] |
1503ecd54f8a
patch 8.2.1799: some Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22476
diff
changeset
|
1091 call setline(1, ['one', 'two', 'three', 'four']) |
1503ecd54f8a
patch 8.2.1799: some Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22476
diff
changeset
|
1092 norm! 3Vy |
1503ecd54f8a
patch 8.2.1799: some Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22476
diff
changeset
|
1093 call assert_equal("one\ntwo\nthree\n", @") |
1503ecd54f8a
patch 8.2.1799: some Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22476
diff
changeset
|
1094 call writefile(v:errors, 'Xtestout') |
1503ecd54f8a
patch 8.2.1799: some Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22476
diff
changeset
|
1095 qall! |
1503ecd54f8a
patch 8.2.1799: some Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22476
diff
changeset
|
1096 [CODE] |
1503ecd54f8a
patch 8.2.1799: some Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22476
diff
changeset
|
1097 if RunVim([], after, '') |
1503ecd54f8a
patch 8.2.1799: some Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22476
diff
changeset
|
1098 call assert_equal([], readfile('Xtestout')) |
1503ecd54f8a
patch 8.2.1799: some Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22476
diff
changeset
|
1099 call delete('Xtestout') |
1503ecd54f8a
patch 8.2.1799: some Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22476
diff
changeset
|
1100 endif |
1503ecd54f8a
patch 8.2.1799: some Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22476
diff
changeset
|
1101 endfunc |
1503ecd54f8a
patch 8.2.1799: some Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22476
diff
changeset
|
1102 |
1503ecd54f8a
patch 8.2.1799: some Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22476
diff
changeset
|
1103 " Test for starting characterwise visual with a count. |
1503ecd54f8a
patch 8.2.1799: some Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22476
diff
changeset
|
1104 " This test needs to be run without any previous visual mode. Otherwise the |
1503ecd54f8a
patch 8.2.1799: some Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22476
diff
changeset
|
1105 " count will use the count from the previous visual mode. |
1503ecd54f8a
patch 8.2.1799: some Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22476
diff
changeset
|
1106 func Test_characterwise_visual_with_count() |
1503ecd54f8a
patch 8.2.1799: some Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22476
diff
changeset
|
1107 let after =<< trim [CODE] |
1503ecd54f8a
patch 8.2.1799: some Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22476
diff
changeset
|
1108 call setline(1, ['one two', 'three']) |
1503ecd54f8a
patch 8.2.1799: some Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22476
diff
changeset
|
1109 norm! l5vy |
1503ecd54f8a
patch 8.2.1799: some Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22476
diff
changeset
|
1110 call assert_equal("ne tw", @") |
1503ecd54f8a
patch 8.2.1799: some Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22476
diff
changeset
|
1111 call writefile(v:errors, 'Xtestout') |
1503ecd54f8a
patch 8.2.1799: some Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22476
diff
changeset
|
1112 qall! |
1503ecd54f8a
patch 8.2.1799: some Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22476
diff
changeset
|
1113 [CODE] |
1503ecd54f8a
patch 8.2.1799: some Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22476
diff
changeset
|
1114 if RunVim([], after, '') |
1503ecd54f8a
patch 8.2.1799: some Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22476
diff
changeset
|
1115 call assert_equal([], readfile('Xtestout')) |
1503ecd54f8a
patch 8.2.1799: some Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22476
diff
changeset
|
1116 call delete('Xtestout') |
1503ecd54f8a
patch 8.2.1799: some Normal mode commands not fully tested
Bram Moolenaar <Bram@vim.org>
parents:
22476
diff
changeset
|
1117 endif |
19613
9c15be376631
patch 8.2.0363: some Normal mode commands not tested
Bram Moolenaar <Bram@vim.org>
parents:
19425
diff
changeset
|
1118 endfunc |
9c15be376631
patch 8.2.0363: some Normal mode commands not tested
Bram Moolenaar <Bram@vim.org>
parents:
19425
diff
changeset
|
1119 |
20199
a4bd28e2cf1d
patch 8.2.0655: search code not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
19852
diff
changeset
|
1120 " Test for visually selecting an inner block (iB) |
a4bd28e2cf1d
patch 8.2.0655: search code not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
19852
diff
changeset
|
1121 func Test_visual_inner_block() |
a4bd28e2cf1d
patch 8.2.0655: search code not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
19852
diff
changeset
|
1122 new |
a4bd28e2cf1d
patch 8.2.0655: search code not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
19852
diff
changeset
|
1123 call setline(1, ['one', '{', 'two', '{', 'three', '}', 'four', '}', 'five']) |
a4bd28e2cf1d
patch 8.2.0655: search code not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
19852
diff
changeset
|
1124 call cursor(5, 1) |
a4bd28e2cf1d
patch 8.2.0655: search code not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
19852
diff
changeset
|
1125 " visually select all the lines in the block and then execute iB |
a4bd28e2cf1d
patch 8.2.0655: search code not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
19852
diff
changeset
|
1126 call feedkeys("ViB\<C-C>", 'xt') |
a4bd28e2cf1d
patch 8.2.0655: search code not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
19852
diff
changeset
|
1127 call assert_equal([0, 5, 1, 0], getpos("'<")) |
a4bd28e2cf1d
patch 8.2.0655: search code not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
19852
diff
changeset
|
1128 call assert_equal([0, 5, 6, 0], getpos("'>")) |
a4bd28e2cf1d
patch 8.2.0655: search code not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
19852
diff
changeset
|
1129 " visually select two inner blocks |
a4bd28e2cf1d
patch 8.2.0655: search code not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
19852
diff
changeset
|
1130 call feedkeys("ViBiB\<C-C>", 'xt') |
a4bd28e2cf1d
patch 8.2.0655: search code not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
19852
diff
changeset
|
1131 call assert_equal([0, 3, 1, 0], getpos("'<")) |
a4bd28e2cf1d
patch 8.2.0655: search code not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
19852
diff
changeset
|
1132 call assert_equal([0, 7, 5, 0], getpos("'>")) |
a4bd28e2cf1d
patch 8.2.0655: search code not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
19852
diff
changeset
|
1133 " try to select non-existing inner block |
a4bd28e2cf1d
patch 8.2.0655: search code not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
19852
diff
changeset
|
1134 call cursor(5, 1) |
a4bd28e2cf1d
patch 8.2.0655: search code not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
19852
diff
changeset
|
1135 call assert_beeps('normal ViBiBiB') |
a4bd28e2cf1d
patch 8.2.0655: search code not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
19852
diff
changeset
|
1136 " try to select a unclosed inner block |
a4bd28e2cf1d
patch 8.2.0655: search code not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
19852
diff
changeset
|
1137 8,9d |
a4bd28e2cf1d
patch 8.2.0655: search code not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
19852
diff
changeset
|
1138 call cursor(5, 1) |
a4bd28e2cf1d
patch 8.2.0655: search code not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
19852
diff
changeset
|
1139 call assert_beeps('normal ViBiB') |
a4bd28e2cf1d
patch 8.2.0655: search code not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
19852
diff
changeset
|
1140 close! |
a4bd28e2cf1d
patch 8.2.0655: search code not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
19852
diff
changeset
|
1141 endfunc |
a4bd28e2cf1d
patch 8.2.0655: search code not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
19852
diff
changeset
|
1142 |
21923
2626306efe44
patch 8.2.1511: putting a string in Visual block mode ignores multi-byte
Bram Moolenaar <Bram@vim.org>
parents:
20941
diff
changeset
|
1143 func Test_visual_put_in_block() |
2626306efe44
patch 8.2.1511: putting a string in Visual block mode ignores multi-byte
Bram Moolenaar <Bram@vim.org>
parents:
20941
diff
changeset
|
1144 new |
2626306efe44
patch 8.2.1511: putting a string in Visual block mode ignores multi-byte
Bram Moolenaar <Bram@vim.org>
parents:
20941
diff
changeset
|
1145 call setline(1, ['xxxx', 'y∞yy', 'zzzz']) |
2626306efe44
patch 8.2.1511: putting a string in Visual block mode ignores multi-byte
Bram Moolenaar <Bram@vim.org>
parents:
20941
diff
changeset
|
1146 normal 1G2yl |
2626306efe44
patch 8.2.1511: putting a string in Visual block mode ignores multi-byte
Bram Moolenaar <Bram@vim.org>
parents:
20941
diff
changeset
|
1147 exe "normal 1G2l\<C-V>jjlp" |
2626306efe44
patch 8.2.1511: putting a string in Visual block mode ignores multi-byte
Bram Moolenaar <Bram@vim.org>
parents:
20941
diff
changeset
|
1148 call assert_equal(['xxxx', 'y∞xx', 'zzxx'], getline(1, 3)) |
2626306efe44
patch 8.2.1511: putting a string in Visual block mode ignores multi-byte
Bram Moolenaar <Bram@vim.org>
parents:
20941
diff
changeset
|
1149 bwipe! |
2626306efe44
patch 8.2.1511: putting a string in Visual block mode ignores multi-byte
Bram Moolenaar <Bram@vim.org>
parents:
20941
diff
changeset
|
1150 endfunc |
2626306efe44
patch 8.2.1511: putting a string in Visual block mode ignores multi-byte
Bram Moolenaar <Bram@vim.org>
parents:
20941
diff
changeset
|
1151 |
24752
1ce39e257f1b
patch 8.2.2914: cannot paste a block without adding padding
Bram Moolenaar <Bram@vim.org>
parents:
24725
diff
changeset
|
1152 func Test_visual_put_in_block_using_zp() |
1ce39e257f1b
patch 8.2.2914: cannot paste a block without adding padding
Bram Moolenaar <Bram@vim.org>
parents:
24725
diff
changeset
|
1153 new |
1ce39e257f1b
patch 8.2.2914: cannot paste a block without adding padding
Bram Moolenaar <Bram@vim.org>
parents:
24725
diff
changeset
|
1154 " paste using zP |
1ce39e257f1b
patch 8.2.2914: cannot paste a block without adding padding
Bram Moolenaar <Bram@vim.org>
parents:
24725
diff
changeset
|
1155 call setline(1, ['/path;text', '/path;text', '/path;text', '', |
1ce39e257f1b
patch 8.2.2914: cannot paste a block without adding padding
Bram Moolenaar <Bram@vim.org>
parents:
24725
diff
changeset
|
1156 \ '/subdir', |
1ce39e257f1b
patch 8.2.2914: cannot paste a block without adding padding
Bram Moolenaar <Bram@vim.org>
parents:
24725
diff
changeset
|
1157 \ '/longsubdir', |
1ce39e257f1b
patch 8.2.2914: cannot paste a block without adding padding
Bram Moolenaar <Bram@vim.org>
parents:
24725
diff
changeset
|
1158 \ '/longlongsubdir']) |
1ce39e257f1b
patch 8.2.2914: cannot paste a block without adding padding
Bram Moolenaar <Bram@vim.org>
parents:
24725
diff
changeset
|
1159 exe "normal! 5G\<c-v>2j$y" |
1ce39e257f1b
patch 8.2.2914: cannot paste a block without adding padding
Bram Moolenaar <Bram@vim.org>
parents:
24725
diff
changeset
|
1160 norm! 1Gf;zP |
1ce39e257f1b
patch 8.2.2914: cannot paste a block without adding padding
Bram Moolenaar <Bram@vim.org>
parents:
24725
diff
changeset
|
1161 call assert_equal(['/path/subdir;text', '/path/longsubdir;text', '/path/longlongsubdir;text'], getline(1, 3)) |
1ce39e257f1b
patch 8.2.2914: cannot paste a block without adding padding
Bram Moolenaar <Bram@vim.org>
parents:
24725
diff
changeset
|
1162 %d |
1ce39e257f1b
patch 8.2.2914: cannot paste a block without adding padding
Bram Moolenaar <Bram@vim.org>
parents:
24725
diff
changeset
|
1163 " paste using zP |
1ce39e257f1b
patch 8.2.2914: cannot paste a block without adding padding
Bram Moolenaar <Bram@vim.org>
parents:
24725
diff
changeset
|
1164 call setline(1, ['/path;text', '/path;text', '/path;text', '', |
1ce39e257f1b
patch 8.2.2914: cannot paste a block without adding padding
Bram Moolenaar <Bram@vim.org>
parents:
24725
diff
changeset
|
1165 \ '/subdir', |
1ce39e257f1b
patch 8.2.2914: cannot paste a block without adding padding
Bram Moolenaar <Bram@vim.org>
parents:
24725
diff
changeset
|
1166 \ '/longsubdir', |
1ce39e257f1b
patch 8.2.2914: cannot paste a block without adding padding
Bram Moolenaar <Bram@vim.org>
parents:
24725
diff
changeset
|
1167 \ '/longlongsubdir']) |
1ce39e257f1b
patch 8.2.2914: cannot paste a block without adding padding
Bram Moolenaar <Bram@vim.org>
parents:
24725
diff
changeset
|
1168 exe "normal! 5G\<c-v>2j$y" |
1ce39e257f1b
patch 8.2.2914: cannot paste a block without adding padding
Bram Moolenaar <Bram@vim.org>
parents:
24725
diff
changeset
|
1169 norm! 1Gf;hzp |
1ce39e257f1b
patch 8.2.2914: cannot paste a block without adding padding
Bram Moolenaar <Bram@vim.org>
parents:
24725
diff
changeset
|
1170 call assert_equal(['/path/subdir;text', '/path/longsubdir;text', '/path/longlongsubdir;text'], getline(1, 3)) |
1ce39e257f1b
patch 8.2.2914: cannot paste a block without adding padding
Bram Moolenaar <Bram@vim.org>
parents:
24725
diff
changeset
|
1171 bwipe! |
1ce39e257f1b
patch 8.2.2914: cannot paste a block without adding padding
Bram Moolenaar <Bram@vim.org>
parents:
24725
diff
changeset
|
1172 endfunc |
1ce39e257f1b
patch 8.2.2914: cannot paste a block without adding padding
Bram Moolenaar <Bram@vim.org>
parents:
24725
diff
changeset
|
1173 |
24866
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1174 func Test_visual_put_in_block_using_zy_and_zp() |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1175 new |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1176 |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1177 " Test 1) Paste using zp - after the cursor without trailing spaces |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1178 call setline(1, ['/path;text', '/path;text', '/path;text', '', |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1179 \ 'texttext /subdir columntext', |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1180 \ 'texttext /longsubdir columntext', |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1181 \ 'texttext /longlongsubdir columntext']) |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1182 exe "normal! 5G0f/\<c-v>2jezy" |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1183 norm! 1G0f;hzp |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1184 call assert_equal(['/path/subdir;text', '/path/longsubdir;text', '/path/longlongsubdir;text'], getline(1, 3)) |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1185 |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1186 " Test 2) Paste using zP - in front of the cursor without trailing spaces |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1187 %d |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1188 call setline(1, ['/path;text', '/path;text', '/path;text', '', |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1189 \ 'texttext /subdir columntext', |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1190 \ 'texttext /longsubdir columntext', |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1191 \ 'texttext /longlongsubdir columntext']) |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1192 exe "normal! 5G0f/\<c-v>2jezy" |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1193 norm! 1G0f;zP |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1194 call assert_equal(['/path/subdir;text', '/path/longsubdir;text', '/path/longlongsubdir;text'], getline(1, 3)) |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1195 |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1196 " Test 3) Paste using p - with trailing spaces |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1197 %d |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1198 call setline(1, ['/path;text', '/path;text', '/path;text', '', |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1199 \ 'texttext /subdir columntext', |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1200 \ 'texttext /longsubdir columntext', |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1201 \ 'texttext /longlongsubdir columntext']) |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1202 exe "normal! 5G0f/\<c-v>2jezy" |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1203 norm! 1G0f;hp |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1204 call assert_equal(['/path/subdir ;text', '/path/longsubdir ;text', '/path/longlongsubdir;text'], getline(1, 3)) |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1205 |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1206 " Test 4) Paste using P - with trailing spaces |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1207 %d |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1208 call setline(1, ['/path;text', '/path;text', '/path;text', '', |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1209 \ 'texttext /subdir columntext', |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1210 \ 'texttext /longsubdir columntext', |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1211 \ 'texttext /longlongsubdir columntext']) |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1212 exe "normal! 5G0f/\<c-v>2jezy" |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1213 norm! 1G0f;P |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1214 call assert_equal(['/path/subdir ;text', '/path/longsubdir ;text', '/path/longlongsubdir;text'], getline(1, 3)) |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1215 |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1216 " Test 5) Yank with spaces inside the block |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1217 %d |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1218 call setline(1, ['/path;text', '/path;text', '/path;text', '', |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1219 \ 'texttext /sub dir/ columntext', |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1220 \ 'texttext /lon gsubdir/ columntext', |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1221 \ 'texttext /lon glongsubdir/ columntext']) |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1222 exe "normal! 5G0f/\<c-v>2jf/zy" |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1223 norm! 1G0f;zP |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1224 call assert_equal(['/path/sub dir/;text', '/path/lon gsubdir/;text', '/path/lon glongsubdir/;text'], getline(1, 3)) |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1225 bwipe! |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1226 endfunc |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1227 |
f1121eb17e14
patch 8.2.2971: cannot yank a block without trailing spaces
Bram Moolenaar <Bram@vim.org>
parents:
24814
diff
changeset
|
1228 |
18771
50fde4e20790
patch 8.1.2375: no suffucient testing for registers
Bram Moolenaar <Bram@vim.org>
parents:
16419
diff
changeset
|
1229 " vim: shiftwidth=2 sts=2 expandtab |