diff --git a/autoload/neosnippet/snippets/vim.snip b/autoload/neosnippet/snippets/vim.snip index 8e363fd..3d387fb 100644 --- a/autoload/neosnippet/snippets/vim.snip +++ b/autoload/neosnippet/snippets/vim.snip @@ -100,3 +100,9 @@ snippet NeoBundle abbr NeoBundle '' NeoBundle '`getreg('+')=='' ? '<\`0\`>' : getreg('+')`'${0} +snippet NeoBundleLazy +abbr NeoBundleLazy '' + NeoBundleLazy '`getreg('+')=='' ? '<\`0\`>' : getreg('+')`', { 'autoload' : { + \ ${0} + \ }} + diff --git a/doc/neosnippet.txt b/doc/neosnippet.txt index 640a617..8af6dbf 100755 --- a/doc/neosnippet.txt +++ b/doc/neosnippet.txt @@ -715,6 +715,9 @@ A: Please try below settings. It defines snipMate function. ============================================================================== CHANGELOG *neosnippet-changelog* +2013-01-22 +- Added NeoBundleLazy snippet. + 2013-01-20 - Lazy initialization.