31 lines
784 B
Lua
31 lines
784 B
Lua
local luasnip = require('luasnip')
|
|
|
|
local fmt = require('luasnip.extras.fmt').fmt
|
|
|
|
local header = [[
|
|
//-----------------------------------------------------------------------------
|
|
// ___ __ _ _
|
|
// / _ \__ _ _ __ ___ ___ / /(_)_ __ | | __
|
|
// / /_)/ _` | '__/ __|/ _ \/ / | | '_ \| |/ /
|
|
// / ___/ (_| | | \__ \ __/ /__| | | | | <
|
|
// \/ \__,_|_| |___/\___\____/_|_| |_|_|\_\ .
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
// Author: Kurt Sassenrath
|
|
// Module: {}
|
|
//
|
|
// {}
|
|
//
|
|
// Copyright (c) 2023 Kurt Sassenrath.
|
|
//
|
|
// License TBD.
|
|
//-----------------------------------------------------------------------------
|
|
|
|
]]
|
|
|
|
return {
|
|
s("hdr", fmt(header, {i(1, "<module>"), i(2, "<description>")}))
|
|
}
|
|
|
|
|