1
0
Fork 0
mirror of synced 2024-07-01 04:51:10 -04:00
ultimate-vim/.vim_runtime/sources_non_forked/vim-snippets/UltiSnips/xml.snippets
2022-04-13 17:21:09 +08:00

17 lines
258 B
Plaintext

priority -50
snippet xml "XML declaration" b
<?xml version="1.0"?>
endsnippet
snippet t "Simple tag" b
<${1:tag}>
${2:${VISUAL}}
</${1/([\w:._-]+).*/$1/}>
endsnippet
snippet ti "Inline tag" b
<${1:tag}>${2:${VISUAL}}</${1/([\w:._-]+).*/$1/}>
endsnippet