mirror of
https://github.com/neovim/neovim.git
synced 2024-12-21 03:35:02 -07:00
f50e03f2e3
vim-patch:8.0.0571
13 lines
319 B
Lua
13 lines
319 B
Lua
local helpers = require('test.functional.helpers')(after_each)
|
|
local clear, eq, command, funcs =
|
|
helpers.clear, helpers.eq, helpers.command, helpers.funcs
|
|
|
|
describe(':z^', function()
|
|
before_each(clear)
|
|
|
|
it('correctly sets the cursor after :z^', function()
|
|
command('z^')
|
|
eq(1, funcs.line('.'))
|
|
end)
|
|
end)
|