- Added autoload snippet in Vim snip.

This commit is contained in:
Shougo Matsushita 2013-01-30 08:03:53 +09:00
parent 15cbea0616
commit 27274a32a4
2 changed files with 11 additions and 0 deletions

View File

@ -108,3 +108,11 @@ abbr NeoBundleLazy ''
\ ${0}
\ }}
snippet autoload
abbr autoload func endfunc
alias afunction afunc
prev_word '^'
function! `substitute(matchstr(neosnippet#util#expand('%:p:r'), '/autoload/\zs.*$'), '/', '#', 'g')`#${1:#:func_name}(${2:#:args})
${0}
endfunction

View File

@ -718,6 +718,9 @@ A: Please try below settings. It defines snipMate function.
==============================================================================
CHANGELOG *neosnippet-changelog*
2013-01-30
- Added autoload snippet in Vim snip.
2013-01-22
- Added NeoBundleLazy snippet.