summaryrefslogtreecommitdiffstats
path: root/bundle/Vundle.vim/autoload
diff options
context:
space:
mode:
Diffstat (limited to 'bundle/Vundle.vim/autoload')
-rw-r--r--bundle/Vundle.vim/autoload/vundle.vim4
-rw-r--r--bundle/Vundle.vim/autoload/vundle/scripts.vim36
2 files changed, 25 insertions, 15 deletions
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)