Add UltiSnips snippets

This commit is contained in:
2016-01-23 00:10:55 +00:00
parent 79844e9f3b
commit 9d0a0f85f7
8 changed files with 944 additions and 0 deletions

17
UltiSnips/xml.snippets Normal file
View File

@@ -0,0 +1,17 @@
snippet t "XML inline tag" i
<${1:tag}>${2:content}</${1/([\w:._-]+).*/$1/}>
endsnippet
snippet a "XML attribute" i
${1:attrib}="${0:value}"
endsnippet
snippet < "XML inline tag" i
<${1:tag}>${2:content}</${1/([\w:._-]+).*/$1/}>
endsnippet
snippet tb "XML inline tag" i
<${1:tag}>
${2:content}
</${1/([\w:._-]+).*/$1/}>
endsnippet