summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bundle/Vundle.vim/CONTRIBUTING.md14
-rw-r--r--bundle/Vundle.vim/autoload/vundle.vim4
-rw-r--r--bundle/Vundle.vim/autoload/vundle/scripts.vim36
-rw-r--r--bundle/Vundle.vim/doc/vundle.txt10
-rw-r--r--bundle/Vundle.vim/test/minirc.vim2
5 files changed, 38 insertions, 28 deletions
diff --git a/bundle/Vundle.vim/CONTRIBUTING.md b/bundle/Vundle.vim/CONTRIBUTING.md
index 2162ffc..ec31f8f 100644
--- a/bundle/Vundle.vim/CONTRIBUTING.md
+++ b/bundle/Vundle.vim/CONTRIBUTING.md
@@ -14,15 +14,15 @@ Issues
Before submitting an issue, be sure to check the following places for answers.
-1. Vundle docs at [`:h vundle`](https://github.com/gmarik/Vundle.vim/blob/master/doc/vundle.txt).
+1. Vundle docs at [`:h vundle`](https://github.com/VundleVim/Vundle.vim/blob/master/doc/vundle.txt).
-2. The [FAQ](https://github.com/gmarik/Vundle.vim/search).
+2. The [FAQ](https://github.com/VundleVim/Vundle.vim/wiki).
-3. [Search](https://github.com/gmarik/Vundle.vim/search) the repository for related issues.
+3. [Search](https://github.com/VundleVim/Vundle.vim/search) the repository for related issues.
## Try To Eliminate Your Vimrc
-In order to make sure it isn't just `.vimrc` replace your own config file with the [minimal vimrc](https://github.com/gmarik/Vundle.vim/blob/master/test/minirc.vim). Clear out bundles and then try to reproduce.
+In order to make sure it isn't just `.vimrc` replace your own config file with the [minimal vimrc](https://github.com/VundleVim/Vundle.vim/blob/master/test/minirc.vim). Clear out bundles and then try to reproduce.
If the problem stops, likely there is an issue in your user configuration. You can incrementally add back your user changes to the minimal file testing the bug each time. This will allow you to slowly bisect the issue. You may want to test one plugin at a time.
@@ -46,7 +46,7 @@ To better respond to issues please follow these general guidelines when explaini
I am using Vim on Kubuntu 13.04 64 bit and I get the following error... (add further explanation here)
-To reproduce the bug, use the vimrc file below and run `:BundleInstall`... (continue with steps)
+To reproduce the bug, use the vimrc file below and run `:PluginInstall`... (continue with steps)
Vimrc:
```
@@ -55,8 +55,8 @@ syntax on
filetype off
set rtp+=~/.vim/bundle/Vundle.vim/
call vundle#rc()
-Bundle 'gmarik/Vundle.vim'
-Bundle 'relevant/plugin'
+Plugin 'VundleVim/Vundle.vim'
+Plugin 'relevant/plugin'
filetype plugin indent on
.... more user configs here...
diff --git a/bundle/Vundle.vim/autoload/vundle.vim b/bundle/Vundle.vim/autoload/vundle.vim
index e458618..148ff3e 100644
--- a/bundle/Vundle.vim/autoload/vundle.vim
+++ b/bundle/Vundle.vim/autoload/vundle.vim
@@ -1,7 +1,7 @@
" Vundle is a shortcut for Vim Bundle and Is a simple plugin manager for Vim
" Author: gmarik
-" HomePage: http://github.com/gmarik/Vundle.vim
-" Readme: http://github.com/gmarik/Vundle.vim/blob/master/README.md
+" HomePage: http://github.com/VundleVim/Vundle.vim
+" Readme: http://github.com/VundleVim/Vundle.vim/blob/master/README.md
" Version: 0.10.2
" Plugin Commands
diff --git a/bundle/Vundle.vim/autoload/vundle/scripts.vim b/bundle/Vundle.vim/autoload/vundle/scripts.vim
index 5d56476..f789762 100644
--- a/bundle/Vundle.vim/autoload/vundle/scripts.vim
+++ b/bundle/Vundle.vim/autoload/vundle/scripts.vim
@@ -63,6 +63,10 @@ func! s:view_log()
endif
call writefile(g:vundle#log, s:log_file)
execute 'silent pedit ' . s:log_file
+ set bufhidden=wipe
+ setl buftype=nofile
+ setl noswapfile
+ setl ro noma
wincmd P | wincmd H
endf
@@ -116,6 +120,11 @@ func! s:view_changelog()
endif
call writefile(s:create_changelog(), s:changelog_file)
execute 'silent pedit' s:changelog_file
+ set bufhidden=wipe
+ setl buftype=nofile
+ setl noswapfile
+ setl ro noma
+ setfiletype vundlelog
wincmd P | wincmd H
endf
@@ -160,6 +169,7 @@ func! vundle#scripts#view(title, headers, results)
setl buftype=nofile
setl noswapfile
+ set bufhidden=wipe
setl cursorline
setl nonu ro noma
@@ -187,25 +197,25 @@ func! vundle#scripts#view(title, headers, results)
com! -buffer -nargs=0 VundleChangelog call s:view_changelog()
- nnoremap <buffer> q :silent bd!<CR>
- nnoremap <buffer> D :exec 'Delete'.getline('.')<CR>
+ nnoremap <silent> <buffer> q :silent bd!<CR>
+ nnoremap <silent> <buffer> D :exec 'Delete'.getline('.')<CR>
- nnoremap <buffer> add :exec 'Install'.getline('.')<CR>
- nnoremap <buffer> add! :exec 'Install'.substitute(getline('.'), '^Plugin ', 'Plugin! ', '')<CR>
+ nnoremap <silent> <buffer> add :exec 'Install'.getline('.')<CR>
+ nnoremap <silent> <buffer> add! :exec 'Install'.substitute(getline('.'), '^Plugin ', 'Plugin! ', '')<CR>
- nnoremap <buffer> i :exec 'InstallAndRequire'.getline('.')<CR>
- nnoremap <buffer> I :exec 'InstallAndRequire'.substitute(getline('.'), '^Plugin ', 'Plugin! ', '')<CR>
+ nnoremap <silent> <buffer> i :exec 'InstallAndRequire'.getline('.')<CR>
+ nnoremap <silent> <buffer> I :exec 'InstallAndRequire'.substitute(getline('.'), '^Plugin ', 'Plugin! ', '')<CR>
- nnoremap <buffer> l :VundleLog<CR>
- nnoremap <buffer> u :VundleChangelog<CR>
- nnoremap <buffer> h :h vundle<CR>
- nnoremap <buffer> ? :norm h<CR>
+ nnoremap <silent> <buffer> l :VundleLog<CR>
+ nnoremap <silent> <buffer> u :VundleChangelog<CR>
+ nnoremap <silent> <buffer> h :h vundle<CR>
+ nnoremap <silent> <buffer> ? :h vundle<CR>
- nnoremap <buffer> c :PluginClean<CR>
- nnoremap <buffer> C :PluginClean!<CR>
+ nnoremap <silent> <buffer> c :PluginClean<CR>
+ nnoremap <silent> <buffer> C :PluginClean!<CR>
nnoremap <buffer> s :PluginSearch
- nnoremap <buffer> R :call vundle#scripts#reload()<CR>
+ nnoremap <silent> <buffer> R :call vundle#scripts#reload()<CR>
" goto first line after headers
exec ':'.(len(a:headers) + 1)
diff --git a/bundle/Vundle.vim/doc/vundle.txt b/bundle/Vundle.vim/doc/vundle.txt
index 9a2670a..81a5f66 100644
--- a/bundle/Vundle.vim/doc/vundle.txt
+++ b/bundle/Vundle.vim/doc/vundle.txt
@@ -54,15 +54,15 @@ more information.
*vundle-windows*
If you are using Windows, see instructions on the Wiki
- https://github.com/gmarik/Vundle.vim/wiki/Vundle-for-Windows.
+ https://github.com/VundleVim/Vundle.vim/wiki/Vundle-for-Windows.
*vundle-faq*
If you run into any issues, please consult the FAQ at
- https://github.com/gmarik/Vundle.vim/wiki
+ https://github.com/VundleVim/Vundle.vim/wiki
2. Setup Vundle:
>
- git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim
+ git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
<
3. Configure bundles:
@@ -79,7 +79,7 @@ more information.
"call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required
- Plugin 'gmarik/Vundle.vim'
+ Plugin 'VundleVim/Vundle.vim'
" The following are examples of different formats supported.
" Keep Plugin commands between vundle#begin/end.
@@ -208,7 +208,7 @@ GitHub
------
GitHub is used when a user/repo is passed to `Plugin`.
>
- Plugin 'gmarik/Vundle.vim' => https://github.com/gmarik/Vundle.vim
+ Plugin 'VundleVim/Vundle.vim' => https://github.com/VundleVim/Vundle.vim
Vim Scripts
-----------
diff --git a/bundle/Vundle.vim/test/minirc.vim b/bundle/Vundle.vim/test/minirc.vim
index 7b48d13..f4ece70 100644
--- a/bundle/Vundle.vim/test/minirc.vim
+++ b/bundle/Vundle.vim/test/minirc.vim
@@ -3,7 +3,7 @@ syntax on
filetype off
set rtp+=~/.vim/bundle/Vundle.vim/
call vundle#begin()
-Plugin 'gmarik/Vundle.vim'
+Plugin 'VundleVim/Vundle.vim'
call vundle#end()
filetype plugin indent on