Skip to content

Commit 8920d05

Browse files
committed
test: fix removed helper
1 parent de975e2 commit 8920d05

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

doc/snippy.txt

+1
Original file line numberDiff line numberDiff line change
@@ -518,6 +518,7 @@ expand_options ~
518518
Default: {}
519519

520520
virtual_markers ~
521+
Requires nvim >= `0.10.0`.
521522
Enable virtual text markers that show all available (inactive) tabstops
522523
and placeholders.
523524
Type: `Table`

test/functional/core_spec.lua

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ local clear, command, eval = helpers.clear, helpers.command, helpers.eval
44
local feed, alter_slashes = helpers.feed, helpers.alter_slashes
55
local insert = helpers.insert
66
local eq, neq, ok = helpers.eq, helpers.neq, helpers.ok
7-
local sleep, exec_lua = helpers.sleep, helpers.exec_lua
7+
local sleep = vim and vim.uv.sleep or helpers.sleep
8+
local exec_lua = helpers.exec_lua
89

910
describe('Core', function()
1011
local screen

0 commit comments

Comments
 (0)