You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We've been using vim-plug over Vundle since 5724d12 (April 2015). Users
have had long enough to migrate their `vimrc.bundles.local` to use
vim-plug's `Plug` command.
Copy file name to clipboardexpand all lines: vimrc.bundles
-22
Original file line number
Diff line number
Diff line change
@@ -10,28 +10,6 @@ function! s:UnPlug(plug_name)
10
10
endfunction
11
11
command! -nargs=1 UnPlug call s:UnPlug(<args>)
12
12
13
-
" Shim command and function to allow migration from Vundle to vim-plug.
14
-
function! VundleToPlug(vundle_command, arg, ...)
15
-
echom "You are using Vundle's `".a:vundle_command."` command to declare plugins. Dotfiles now uses vim-plug for plugin management. Please rename uses of `".a:vundle_command."` to `Plug`. Plugin was '".a:arg."'."
16
-
let vim_plug_options = {}
17
-
18
-
if a:0 > 0
19
-
if has_key(a:1, 'name')
20
-
let name = a:1.name
21
-
let vim_plug_options.dir = "$HOME/.vim/bundle/".a:1.name
0 commit comments