Merge branch 'neosnippet' of github.com:Shougo/neocomplcache-snippets-complete into neosnippet

This commit is contained in:
Shougo Matsushita 2012-10-08 22:01:34 +09:00
commit 93ef606993
2 changed files with 11 additions and 0 deletions

View File

@ -65,3 +65,11 @@ prev_word '^'
function! ${1:func_name}(arglead, cmdline, cursorpos)
return filter(${2:list}, 'stridx(v:val, a:arglead) == 0')
endfunction
snippet augroup
abbr augroup with autocmds
prev_word '^'
augroup ${1}
autocmd!
autocmd ${2:event}
augroup END

View File

@ -404,6 +404,9 @@ snippet *neosnippet-unite-action-snippet*
==============================================================================
CHANGELOG *neosnippet-changelog*
2012-10-07
- Improved vim snip.
2012-10-06
- Improved indent snippet behavior.
- Fixed substitute marker.