1
0
mirror of https://github.com/amix/vimrc synced 2025-08-01 18:35:00 +08:00

Updated plugins

This commit is contained in:
amix
2013-07-17 19:06:05 -04:00
parent 879a7b6bd4
commit a448b32309
85 changed files with 2174 additions and 941 deletions

View File

@ -16,14 +16,14 @@ foreach ${1:var} ${2:\$list} {
endsnippet
snippet if "if... (if)" b
if {${1:condition}} {
if {${1}} {
${2}
}
endsnippet
snippet proc "proc... (proc)" b
proc ${1:name} {${2:args}} \
proc ${1} {${2}} \
{
${3}
}
@ -41,7 +41,7 @@ switch ${1:-exact} -- ${2:\$var} {
endsnippet
snippet while "while... (while)" b
while {${1:condition}} {
while {${1}} {
${2}
}