Initial commit.

This commit is contained in:
yan
2011-11-17 15:45:33 -06:00
commit 882015bc6d
1819 changed files with 111625 additions and 0 deletions

1
vim/snippets/vim/au.snippet Executable file
View File

@@ -0,0 +1 @@
autocmd ${1:events} ${2:pattern} ${3:command}

1
vim/snippets/vim/com.snippet Executable file
View File

@@ -0,0 +1 @@
command! -nargs=${1:number_of_args} ${2:other_params} ${2:name} ${2:command}

8
vim/snippets/vim/func.snippet Executable file
View File

@@ -0,0 +1,8 @@
"Function: $1
"Desc: ${3:description}
"
"Arguments:
"${4}
function! ${1:name}(${2})
${5}
endfunction

3
vim/snippets/vim/if.snippet Executable file
View File

@@ -0,0 +1,3 @@
if ${1}
${2}
endif

4
vim/snippets/vim/ife.snippet Executable file
View File

@@ -0,0 +1,4 @@
if ${1}
${2}
else
endif

1
vim/snippets/vim/log.snippet Executable file
View File

@@ -0,0 +1 @@
echomsg ${1}

4
vim/snippets/vim/try.snippet Executable file
View File

@@ -0,0 +1,4 @@
try
${2}
catch /${1}/
endtry