1
0
mirror of https://github.com/amix/vimrc synced 2025-06-16 01:25:00 +08:00

Updated all plugins that are non-forked. Added some new plugins.

Added update_plugins.py which can fetch new plugins from GitHub.

New plugins added: zencoding, vim-indent-object, taglist, nginx.vim
This commit is contained in:
amix
2013-04-13 14:45:21 -03:00
parent 5731b3a420
commit 3f1cdba799
1057 changed files with 33631 additions and 10806 deletions

View File

@ -0,0 +1 @@
<base href="<++>"<+ target="<++>"+>/>

View File

@ -0,0 +1,3 @@
<body id="${1}">
${2}
</body>

View File

@ -0,0 +1,3 @@
<div id="${1}">
${2}
</div>

View File

@ -0,0 +1 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">${1}

View File

@ -0,0 +1,5 @@
<form action="${1:action}" method="${2:post}" accept-charset="utf-8">
${3}
<p><input type="submit" value="Continue &rarr;"/></p>
</form>

View File

@ -0,0 +1 @@
<h1 id="${1}">${2}</h1>

View File

@ -0,0 +1,5 @@
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8"/>
<title>${1:Page Title}</title>
${2}
</head>

View File

@ -0,0 +1 @@
<a href="${1}">${2}</a>

View File

@ -0,0 +1 @@
<!--[if IE ${1:6}]>${2}<![endif]-->${3}

View File

@ -0,0 +1 @@
<img src="${1}"${2} />

View File

@ -0,0 +1 @@
<input type="${1:text/submit/hidden/button}" name="${2}" value="${3:value}" id="${4:$2}"/>${5}

View File

@ -0,0 +1,2 @@
<label for="${1:input_id}">${2}</label>
<input type="${3:text/submit/hidden/button}" name="${4:$1}" value="${5:value}" id="${6:$1}"/>${7}

View File

@ -0,0 +1 @@
<label for="${1:id}">${2:label_text}</label>

View File

@ -0,0 +1 @@
<link rel="${1:stylesheet}" href="${2:path-to-stylesheet}.css" type="text/css" media="${3:screen}" charset="${4:utf-8}"/>${5}

View File

@ -0,0 +1 @@
<a href="mailto:<+email+><+?subject=<+feedback+>+>"><+email me+></a>

View File

@ -0,0 +1 @@
<meta name="${1:name}" content="${2:content}"/>

View File

@ -0,0 +1 @@
<option value="${1}">${2}</option>

View File

@ -0,0 +1 @@
<script src="${1:url}" type="text/javascript" charset="utf-8"></script>${2}

View File

@ -0,0 +1,5 @@
<script type="text/javascript" language="javascript" charset="utf-8">
//<![CDATA[
${1}
//]]>
</script>

View File

@ -0,0 +1,3 @@
<select name="${1}" id="${2}">
${3}
</select>

View File

@ -0,0 +1,13 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>${1:Page Title}</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<body>
${2}
</body>
</html>

View File

@ -0,0 +1,15 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>${1:Page Title}</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta name="keywords" content=""/>
<meta name="description" content=""/>
</head>
<body>
${2}
</body>
</html>

View File

@ -0,0 +1,3 @@
<style type="text/css" media="screen">
${1}
</style>

View File

@ -0,0 +1,3 @@
<${1:div}${2}>
${3}
</$1>${4}

View File

@ -0,0 +1,3 @@
<table class="${1}">
${2}
</table>

View File

@ -0,0 +1,9 @@
<table<+ width="<+100%+>" border="<+0+>" cellspacing="<+0+>" cellpadding="<+5+>"<++>+>>
<tr>
<th><++></th>
</tr>
<tr>
<td></td>
</tr>
</table>

View File

@ -0,0 +1 @@
<textarea name="${1:Name}" rows="${2:8}" cols="${2:40}">${3}</textarea>