Browse Source

Merge 6242b7f7c1 into 5548a1a937

pull/832/merge
Daniel Bosk 1 year ago
committed by GitHub
parent
commit
a48aa15d42
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
2 changed files with 11 additions and 0 deletions
  1. +1
    -0
      autoload/vundle/installer.vim
  2. +10
    -0
      doc/vundle.txt

+ 1
- 0
autoload/vundle/installer.vim View File

@ -407,6 +407,7 @@ func! s:make_sync_command(bang, bundle) abort
let cmd_parts = [
\ 'cd '.vundle#installer#shellesc(a:bundle.path()),
\ 'git tag -f vundle-'.strftime('%Y%m%d-%H%M'),
\ 'git pull',
\ 'git submodule update --init --recursive',
\ ]


+ 10
- 0
doc/vundle.txt View File

@ -277,6 +277,16 @@ To update specific plugins, write their names separated by space:
or >
:PluginUpdate vim-surround vim-fugitive
The command `git tag` will be used to tag the commit that was used before any
update (i.e. before `git pull` is run). The tag is named `update-<strftime>`
(today's date and time). If a plugin breaks after update, go to its
directory, check for the latest tag using `git tag` and run
`git checkout vundle-<somedatetime> && \`
`git submodule update --init --recursive`
Then mark it as 'pinned' in `.vimrc`.
3.5 SEARCHING PLUGINS ~
*vundle-plugins-search* *:PluginSearch*
>


Loading…
Cancel
Save