neovim/test/functional/ex_cmds/wincmd_spec.lua

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
279 B
Lua
Raw Normal View History

local t = require('test.functional.testutil')(after_each)
local clear = t.clear
local eq = t.eq
local fn = t.fn
local command = t.command
it(':wincmd accepts a count', function()
clear()
command('vsplit')
eq(1, fn.winnr())
command('wincmd 2 w')
eq(2, fn.winnr())
end)