1
0
Fork 0
mirror of synced 2024-09-16 03:02:55 -04:00
ultimate-vim/sources_non_forked/vim-snippets/UltiSnips/xml.snippets

16 lines
254 B
Text

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