blob: 1d0bc997a6c08209cb078f563491da4e49c870d2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
|
# Tip of the hat to terryma/vim-multiple-cursors for this style
# of testing Vim.
require 'spec_helper'
describe 'Basic editing' do
specify 'writing simple text' do
initial <<-EOF
EOF
type 'hello world'
final <<-EOF
hello world
EOF
end
specify '<Home> goes to first non-whitespace char' do
initial <<-EOF
justified
indented
EOF
type '<Down><End><Home>!'
final <<-EOF
justified
!indented
EOF
end
specify 'copy and paste' do
initial <<-EOF
copy me
EOF
type '<S-End><C-c><Esc><Space><C-v>'
final <<-EOF
copy me copy me
EOF
end
specify 'CTRL+ARROW jumps by word' do
initial <<-EOF
one two three four
EOF
type '<C-Right>X<C-Right>Y<C-Left>Z'
final <<-EOF
one Xtwo ZYthree four
EOF
end
end
describe 'Selecting' do
specify 'select all and replace' do
initial <<-EOF
select me
EOF
type '<C-a>gone'
final <<-EOF
gone
EOF
end
specify 'paste over selection' do
initial <<-EOF
cut me and paste over me
EOF
7.times { type '<S-Right>' }
type '<C-x>'
10.times { type '<Right>' }
7.times { type '<S-Right>' }
type '<C-v>'
final <<-EOF
and paste cut me
EOF
end
specify 'selecting from middle of line to end' do
initial <<-EOF
a line of text
EOF
6.times { type '<Right>' }
type '<S-End>'
type '!'
final <<-EOF
a line!
EOF
end
specify 'selecting from middle of line to beginning' do
initial <<-EOF
a line of text
EOF
7.times { type '<Right>' }
type '<S-Home>'
type '!'
final <<-EOF
!of text
EOF
end
specify 'CTRL+D selects the word under the cursor' do
initial <<-EOF
a line of text
EOF
4.times { type '<Right>' }
type '<C-D>X'
final <<-EOF
a X of text
EOF
end
end
describe 'Home/End behaviour for long, non-wrapped code lines' do
before(:each) do
# We need a small screen so that lines go off the edge of it.
@vim_options = [
# A single buffer can't be resized, so create a split of the buffer
'vsplit',
'vertical resize 6'
]
end
specify 'HOME/END move to start/end of line off-screen' do
initial <<-EOF
line line line line
EOF
type '<End>X<Home>Y'
final <<-EOF
Yline line line lineX
EOF
end
specify 'SHIFT+END selects line, even if off-screen' do
initial <<-EOF
line line line line!
EOF
type '<S-End><S-Left>x'
final <<-EOF
x!
EOF
end
specify 'SHIFT+HOME selects line, even if off-screen' do
initial <<-EOF
!line line line line
EOF
type '<End><S-Home><S-Right>x'
final <<-EOF
!x
EOF
end
end
describe 'Wrapped text' do
before(:each) do
@vim_options = [
# A single buffer can't be resized, so create a split of the buffer
'vsplit',
'vertical resize 6'
]
use_extension 'txt'
end
specify 'move up/down one wrapped line' do
initial <<-EOF
line line line line
EOF
type '<Down><Down>down '
type '<Up>up '
final <<-EOF
line line up down line line
EOF
end
specify 'select wrapped line below' do
initial <<-EOF
line1 line2 line3 line4
EOF
type '<Down><S-Down><S-Down>'
type '!'
final <<-EOF
line1 !line3 line4
EOF
end
specify 'select wrapped line above' do
initial <<-EOF
line1 line2 line3 line4
EOF
type '<Down><Down><S-Up><S-Up>'
type '!'
final <<-EOF
line1 !line3 line4
EOF
end
specify '<End> goes to end of wrapped line' do
initial <<-EOF
line line line line
EOF
type '<End>!'
final <<-EOF
line! line line line
EOF
end
specify '<Home> goes to beginning of wrapped line' do
initial <<-EOF
line line line line
EOF
type '<Down><Home>!'
final <<-EOF
line !line line line
EOF
end
end
describe 'Pane control' do
specify 'moving to another pane' do
# Open Quickfix window (auto focuses to it)
type '<M-;>:copen<CR>'
pane_type = vim.command 'echo &buftype'
expect(pane_type).to eq 'quickfix'
# Focus back to file
type '<M-Up>'
pane_type = vim.command 'echo &buftype'
expect(pane_type).to eq ''
end
specify 'closing a pane' do
type '<M-;>vsplit README.md<CR>'
buffer_id = vim.command "echo bufnr('%')"
expect(buffer_id).to eq '2'
type '<C-w>'
buffer_id = vim.command "echo bufnr('%')"
expect(buffer_id).to eq '1'
end
end
|