blob: d82c46a3d30423014a1a9458f6c311c002d713eb (
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
|
-- Test for t movement command and 'cpo-;' setting
local helpers = require('test.functional.helpers')(after_each)
local clear, feed, insert = helpers.clear, helpers.feed, helpers.insert
local feed_command, expect = helpers.feed_command, helpers.expect
describe('coptions', function()
setup(clear)
-- luacheck: ignore 613 (Trailing whitespace in a string)
it('is working', function()
insert([[
aaa two three four
zzz
yyy
bbb yee yoo four
ccc two three four
ddd yee yoo four]])
feed_command('set cpo-=;')
feed('gg0tt;D')
feed('j0fz;D')
feed('j$Fy;D')
feed('j$Ty;D')
feed_command('set cpo+=;')
feed('j0tt;;D')
feed('j$Ty;;D')
expect([[
aaa two
z
y
bbb y
ccc
ddd yee y]])
end)
end)
|