Skip to content

Commit

Permalink
test: fix removed helper
Browse files Browse the repository at this point in the history
  • Loading branch information
dcampos committed Jan 14, 2024
1 parent de975e2 commit 8920d05
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions doc/snippy.txt
Original file line number Diff line number Diff line change
Expand Up @@ -518,6 +518,7 @@ expand_options ~
Default: {}

virtual_markers ~
Requires nvim >= `0.10.0`.
Enable virtual text markers that show all available (inactive) tabstops
and placeholders.
Type: `Table`
Expand Down
3 changes: 2 additions & 1 deletion test/functional/core_spec.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ local clear, command, eval = helpers.clear, helpers.command, helpers.eval
local feed, alter_slashes = helpers.feed, helpers.alter_slashes
local insert = helpers.insert
local eq, neq, ok = helpers.eq, helpers.neq, helpers.ok
local sleep, exec_lua = helpers.sleep, helpers.exec_lua
local sleep = vim and vim.uv.sleep or helpers.sleep
local exec_lua = helpers.exec_lua

describe('Core', function()
local screen
Expand Down

0 comments on commit 8920d05

Please sign in to comment.