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

Updated all the plugins. Removed powerline. Added vim-airline (replacement for powerline). Added vim-fugitive.

This commit is contained in:
amix
2013-11-16 19:45:48 +00:00
parent 351979d3e0
commit 86f4456be1
239 changed files with 14942 additions and 8068 deletions

View File

@ -1,23 +1,23 @@
snippet apply-templates with-param
<xsl:apply-templates select="${1:*}">
<xsl:with-param name="${2:param}">${3}</xsl:with-param>${4}
</xsl:apply-templates>${5}
</xsl:apply-templates>
snippet apply-templates sort-by
<xsl:apply-templates select="${1:*}">
<xsl:sort select="${2:node}" order="${3:ascending}" data-type="${4:text}">${5}
</xsl:apply-templates>${6}
</xsl:apply-templates>
snippet apply-templates plain
<xsl:apply-templates select="${1:*}" />${2}
<xsl:apply-templates select="${1:*}" />
snippet attribute blank
<xsl:attribute name="${1:name}">${2}</xsl:attribute>${3}
<xsl:attribute name="${1:name}">${2}</xsl:attribute>
snippet attribute value-of
<xsl:attribute name="${1:name}">
<xsl:value-of select="${2:*}" />
</xsl:attribute>${3}
</xsl:attribute>
snippet call-template
<xsl:call-template name="${1:template}" />
@ -25,73 +25,73 @@ snippet call-template
snippet call-template with-param
<xsl:call-template name="${1:template}">
<xsl:with-param name="${2:param}">${3}</xsl:with-param>${4}
</xsl:call-template>${5}
</xsl:call-template>
snippet choose
<xsl:choose>
<xsl:when test="${1:value}">
${2}
</xsl:when>${3}
</xsl:when>
</xsl:choose>
snippet copy-of
<xsl:copy-of select="${1:*}" />${2}
<xsl:copy-of select="${1:*}" />
snippet for-each
<xsl:for-each select="${1:*}">${2}
</xsl:for-each>${3}
</xsl:for-each>
snippet if
<xsl:if test="${1:test}">${2}
</xsl:if>${3}
</xsl:if>
snippet import
<xsl:import href="${1:stylesheet}" />${2}
<xsl:import href="${1:stylesheet}" />
snippet include
<xsl:include href="${1:stylesheet}" />${2}
<xsl:include href="${1:stylesheet}" />
snippet otherwise
<xsl:otherwise>${1}
<xsl:otherwise>${0}
</xsl:otherwise>
snippet param
<xsl:param name="${1:name}">${2}
</xsl:param>${3}
</xsl:param>
snippet stylesheet
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">${1}
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">${0}
</xsl:stylesheet>
snippet template
<xsl:template match="${1:*}">${3}
<xsl:template match="${1:*}">${0}
</xsl:template>
snippet template named
<xsl:template name="${1:name}">${2}
<xsl:template name="${1:name}">${0}
</xsl:template>
snippet text
<xsl:text>${1}</xsl:text>
<xsl:text>${0}</xsl:text>
snippet value-of
<xsl:value-of select="${1:*}" />${2}
<xsl:value-of select="${1:*}" />
snippet variable blank
<xsl:variable name="${1:name}">${2}
<xsl:variable name="${1:name}">${0}
</xsl:variable>
snippet variable select
<xsl:variable select="${1:*}" />${2}
<xsl:variable select="${1:*}" />
snippet when
<xsl:when test="${1:test}">${2}
<xsl:when test="${1:test}">${0}
</xsl:when>
snippet with-param
<xsl:with-param name="${1:name}">${2}</xsl:with-param>
<xsl:with-param name="${1:name}">${0}</xsl:with-param>
snippet with-param select
<xsl:with-param name="${1:name}" select="${2:*}" />
<xsl:with-param name="${1:name}" select="${0:*}" />