2014-03-11 16:10:50 -04:00
|
|
|
priority -50
|
|
|
|
|
|
|
|
snippet xml "XML declaration" b
|
|
|
|
<?xml version="1.0"?>
|
|
|
|
|
|
|
|
endsnippet
|
|
|
|
|
2013-04-13 13:45:21 -04:00
|
|
|
snippet t "Simple tag" b
|
|
|
|
<${1:tag}>
|
2018-07-19 08:52:53 -04:00
|
|
|
${2:${VISUAL}}
|
2013-04-13 13:45:21 -04:00
|
|
|
</${1/([\w:._-]+).*/$1/}>
|
|
|
|
endsnippet
|
|
|
|
|
|
|
|
snippet ti "Inline tag" b
|
2018-07-19 08:52:53 -04:00
|
|
|
<${1:tag}>${2:${VISUAL}}</${1/([\w:._-]+).*/$1/}>
|
2013-04-13 13:45:21 -04:00
|
|
|
endsnippet
|