Files
nvim/UltiSnips/veryl.snippets
nichkara 7b3f516848
Some checks failed
Test Neovim config on push / build (ubuntu-20.04) (push) Failing after 42s
VHDL LSP integration update
2025-10-22 20:38:43 +02:00

14 lines
170 B
Plaintext

snippet module "Create a new module" b
${1:pub } module ${2:module_name} (
$3
) {
$0
}
endsnippet
snippet embed "Add embed"
embed (inline) sv{{{
$1
}}}$0
endsnippet