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

renamed sources_non_forked folder to bundle

This commit is contained in:
Mirosław Pragłowski
2014-05-09 21:28:39 +02:00
parent 1b24133310
commit a1339baae9
1424 changed files with 5 additions and 33 deletions

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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