blob: e58d34acd9c4be00c1f3a72a5d4926ad2edbe923 (
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
|
-- Tests for signs
local t = require('test.functional.testutil')()
local clear, command, expect = t.clear, t.command, t.expect
describe('signs', function()
setup(clear)
it('is working', function()
command('sign define JumpSign text=x')
command([[exe 'sign place 42 line=2 name=JumpSign buffer=' . bufnr('')]])
-- Split the window to the bottom to verify :sign-jump will stay in the current
-- window if the buffer is displayed there.
command('bot split')
command([[exe 'sign jump 42 buffer=' . bufnr('')]])
command([[call append(line('$'), winnr())]])
-- Assert buffer contents.
expect([[
2]])
end)
end)
|