Files
nix/dots/.vim/snips/javascript.snippets
2025-10-04 18:28:04 +02:00

12 lines
190 B
Plaintext

snippet clg "console.log"
console.log($0)
endsnippet
snippet Js "JSON.stringify"
JSON.stringify($0)
endsnippet
snippet Jsf "JSON.stringify (formatted)"
JSON.stringify($0, 0, 2)
endsnippet