1
0
Fork 0
mirror of synced 2024-07-02 13:31:09 -04:00
ultimate-vim/bundle/vim-snippets/UltiSnips/json.snippets
2014-05-09 21:28:39 +02:00

21 lines
229 B
Plaintext

priority -50
snippet s "String" b
"${1:key}": "${0:value}",
endsnippet
snippet n "number" b
"${1:key}": ${0:value},
endsnippet
snippet a "Array" b
[
${VISUAL}$0
],
endsnippet
snippet o "Object" b
{
${VISUAL}$0
},
endsnippet