blob: 1948cf017a643a5918fa452cc029266b2d0420f0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
local helpers = require('test.functional.helpers')(after_each)
local clear = helpers.clear
local eq = helpers.eq
local funcs = helpers.funcs
local command = helpers.command
it(':wincmd accepts a count', function()
clear()
command('vsplit')
eq(1, funcs.winnr())
command('wincmd 2 w')
eq(2, funcs.winnr())
end)
|