mirror of
https://github.com/amix/vimrc
synced 2025-07-05 23:44:59 +08:00
Use sources_non_forked folder for pathogen path, with sources_non_forked_fallback folder as fallback.
This commit is contained in:
@ -1,54 +0,0 @@
|
||||
snippet def
|
||||
<%def name="${1:name}">
|
||||
${0:}
|
||||
</%def>
|
||||
snippet call
|
||||
<%call expr="${1:name}">
|
||||
${0:}
|
||||
</%call>
|
||||
snippet doc
|
||||
<%doc>
|
||||
${0:}
|
||||
</%doc>
|
||||
snippet text
|
||||
<%text>
|
||||
${0:}
|
||||
</%text>
|
||||
snippet for
|
||||
% for ${1:i} in ${2:iter}:
|
||||
${0:}
|
||||
% endfor
|
||||
snippet if if
|
||||
% if $1:
|
||||
${0:}
|
||||
% endif
|
||||
snippet ife if/else
|
||||
% if $1:
|
||||
${2:}
|
||||
% else:
|
||||
${0:}
|
||||
% endif
|
||||
snippet try
|
||||
% try:
|
||||
${1:${VISUAL}}
|
||||
% except${2:}:
|
||||
${0:pass}
|
||||
% endtry
|
||||
snippet wh
|
||||
% while ${1:}:
|
||||
${0:}
|
||||
% endwhile
|
||||
snippet $
|
||||
${ ${0:} }
|
||||
snippet <%
|
||||
<% ${0:} %>
|
||||
snippet <!%
|
||||
<!% ${0:} %>
|
||||
snippet inherit
|
||||
<%inherit file="${0:filename}" />
|
||||
snippet include
|
||||
<%include file="${0:filename}" />
|
||||
snippet namespace
|
||||
<%namespace file="${0:name}" />
|
||||
snippet page
|
||||
<%page args="${0:}" />
|
Reference in New Issue
Block a user