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:
@ -1,54 +1,54 @@
|
||||
snippet def
|
||||
<%def name="${1:name}">
|
||||
${2:}
|
||||
${0:}
|
||||
</%def>
|
||||
snippet call
|
||||
<%call expr="${1:name}">
|
||||
${2:}
|
||||
${0:}
|
||||
</%call>
|
||||
snippet doc
|
||||
<%doc>
|
||||
${1:}
|
||||
${0:}
|
||||
</%doc>
|
||||
snippet text
|
||||
<%text>
|
||||
${1:}
|
||||
${0:}
|
||||
</%text>
|
||||
snippet for
|
||||
% for ${1:i} in ${2:iter}:
|
||||
${3:}
|
||||
${0:}
|
||||
% endfor
|
||||
snippet if if
|
||||
% if ${1:condition}:
|
||||
${2:}
|
||||
${0:}
|
||||
% endif
|
||||
snippet ife if/else
|
||||
% if ${1:condition}:
|
||||
${2:}
|
||||
% else:
|
||||
${3:}
|
||||
${0:}
|
||||
% endif
|
||||
snippet try
|
||||
% try:
|
||||
${1:}
|
||||
% except${2:}:
|
||||
${3:pass}
|
||||
${0:pass}
|
||||
% endtry
|
||||
snippet wh
|
||||
% while ${1:}:
|
||||
${2:}
|
||||
${0:}
|
||||
% endwhile
|
||||
snippet $
|
||||
${ ${1:} }
|
||||
${ ${0:} }
|
||||
snippet <%
|
||||
<% ${1:} %>
|
||||
<% ${0:} %>
|
||||
snippet <!%
|
||||
<!% ${1:} %>
|
||||
<!% ${0:} %>
|
||||
snippet inherit
|
||||
<%inherit file="${1:filename}" />
|
||||
<%inherit file="${0:filename}" />
|
||||
snippet include
|
||||
<%include file="${1:filename}" />
|
||||
<%include file="${0:filename}" />
|
||||
snippet namespace
|
||||
<%namespace file="${1:name}" />
|
||||
<%namespace file="${0:name}" />
|
||||
snippet page
|
||||
<%page args="${1:}" />
|
||||
<%page args="${0:}" />
|
||||
|
Reference in New Issue
Block a user