Initial commit.

This commit is contained in:
yan
2011-11-17 16:00:49 -06:00
commit 882015bc6d
1819 changed files with 111625 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
autocmd ${1:events} ${2:pattern} ${3:command}
+1
View File
@@ -0,0 +1 @@
command! -nargs=${1:number_of_args} ${2:other_params} ${2:name} ${2:command}
+8
View File
@@ -0,0 +1,8 @@
"Function: $1
"Desc: ${3:description}
"
"Arguments:
"${4}
function! ${1:name}(${2})
${5}
endfunction
+3
View File
@@ -0,0 +1,3 @@
if ${1}
${2}
endif
+4
View File
@@ -0,0 +1,4 @@
if ${1}
${2}
else
endif
+1
View File
@@ -0,0 +1 @@
echomsg ${1}
+4
View File
@@ -0,0 +1,4 @@
try
${2}
catch /${1}/
endtry