From 71ac9c80e519dd19a8708d4d6bd1ce719ec3a88a Mon Sep 17 00:00:00 2001 From: Lucas Hoffmann Date: Tue, 6 May 2014 09:19:30 +0200 Subject: [PATCH] update vim snippet for plugin definition with Vundle.vim Vundle has changed it's public API. The Bundle command is deprecated. See https://github.com/gmarik/Vundle.vim/blob/v0.10/doc/vundle.txt#L372 --- snippets/vim.snippets | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/snippets/vim.snippets b/snippets/vim.snippets index 8e8093b..c1b802a 100644 --- a/snippets/vim.snippets +++ b/snippets/vim.snippets @@ -46,5 +46,7 @@ snippet au " this one is which you're most likely to use? autocmd ${2:BufRead,BufNewFile} ${3:*.ext,*.ext3|} ${0} augroup end -snippet bun - Bundle '${0}' +snippet bun Vundle.vim Plugin definition + Plugin '${0}' +snippet plug Vundle.vim Plugin definition + Plugin '${0}'