1
Fork 0
satellite/home/features/neovim/snippets/lua.miros

29 lines
485 B
Plaintext
Raw Permalink Normal View History

2024-04-16 23:25:20 +02:00
block start
string msetup
name setup module
desc Create a lua module together with a .setup() function
snip
local M = {}
function M.setup()
$0
end
return M
string describe
name busted describe
desc Create a describe grouping for busted tests
snip
describe("$1", function ()
$0
end)
string it
name busted it
desc Create a busted test
snip
it("$1", function ()
$0
end)