Fixed vim and zsh
This commit is contained in:
16
vim/snippets/vim-snippets/UltiSnips/xml.snippets
Normal file
16
vim/snippets/vim-snippets/UltiSnips/xml.snippets
Normal file
@ -0,0 +1,16 @@
|
||||
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
|
Reference in New Issue
Block a user