Add miros support!
This commit is contained in:
parent
5652b531ba
commit
1ed3a529c9
26 changed files with 910 additions and 1153 deletions
home/features/neovim/snippets
28
home/features/neovim/snippets/lua.miros
Normal file
28
home/features/neovim/snippets/lua.miros
Normal file
|
@ -0,0 +1,28 @@
|
|||
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)
|
Loading…
Add table
Add a link
Reference in a new issue