mirror of
1
0
Fork 0
ultimate-vim/sources_non_forked/vim-snippets/snippets/vim.snippets

53 lines
1.2 KiB
Plaintext
Raw Normal View History

2014-07-02 07:18:18 -04:00
snippet header standard Vim script file header
2012-08-16 23:41:25 -04:00
" File: ${1:`expand('%:t')`}
" Author: ${2:`g:snips_author`}
" Description: ${3}
${0:" Last Modified: `strftime("%B %d, %Y")`}
2014-07-02 07:18:18 -04:00
snippet guard script reload guard
2013-07-17 19:06:05 -04:00
if exists('${1:did_`vim_snippets#Filename()`}') || &cp${2: || version < 700}
2012-08-16 23:41:25 -04:00
finish
endif
let $1 = 1${0}
2014-07-02 07:18:18 -04:00
snippet f function
2012-08-16 23:41:25 -04:00
fun! ${1:`expand('%') =~ 'autoload' ? substitute(matchstr(expand('%:p'),'autoload/\zs.*\ze.vim'),'[/\\]','#','g').'#' : ''`}${2:function_name}(${3})
${0}
2012-08-16 23:41:25 -04:00
endf
2014-07-02 07:18:18 -04:00
snippet t try ... catch statement
2012-08-16 23:41:25 -04:00
try
2017-02-11 08:01:38 -05:00
${1:${VISUAL}}
2012-08-16 23:41:25 -04:00
catch ${2}
${0}
2012-08-16 23:41:25 -04:00
endtry
2014-07-02 07:18:18 -04:00
snippet for for ... in loop
2013-07-17 19:06:05 -04:00
for ${1} in ${2}
2017-02-11 08:01:38 -05:00
${0:${VISUAL}}
2013-07-17 19:06:05 -04:00
endfor
2014-07-02 07:18:18 -04:00
snippet forkv for [key, value] in loop
2013-07-17 19:06:05 -04:00
for [${1},${2}] in items(${3})
${0}
unlet $1 $2
2012-08-16 23:41:25 -04:00
endfor
2014-07-02 07:18:18 -04:00
snippet wh while loop
2013-07-17 19:06:05 -04:00
while ${1}
2017-02-11 08:01:38 -05:00
${0:${VISUAL}}
2012-08-16 23:41:25 -04:00
endw
2014-07-02 07:18:18 -04:00
snippet if if statement
2013-07-17 19:06:05 -04:00
if ${1}
2017-02-11 08:01:38 -05:00
${0:${VISUAL}}
2012-08-16 23:41:25 -04:00
endif
2014-07-02 07:18:18 -04:00
snippet ife if ... else statement
2013-07-17 19:06:05 -04:00
if ${1}
2017-02-11 08:01:38 -05:00
${2:${VISUAL}}
2012-08-16 23:41:25 -04:00
else
${0}
2012-08-16 23:41:25 -04:00
endif
2014-07-02 07:18:18 -04:00
snippet au augroup ... autocmd block
2012-08-16 23:41:25 -04:00
augroup ${1:AU_NAME}
" this one is which you're most likely to use?
autocmd ${2:BufRead,BufNewFile} ${3:*.ext,*.ext3|<buffer[=N]>} ${0}
2012-08-16 23:41:25 -04:00
augroup end
2014-07-02 07:18:18 -04:00
snippet bun Vundle.vim Plugin definition
Plugin '${0}'
snippet plug Vundle.vim Plugin definition
Plugin '${0}'