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