mirror of
https://github.com/junegunn/vim-plug.git
synced 2024-12-19 10:35:38 -07:00
parent
326cb71a2a
commit
e15598fe45
@ -141,6 +141,7 @@ Reload .vimrc and `:PlugInstall` to install plugins.
|
|||||||
| `g:plug_retries` | 2 | Number of retries in case of timeout (*Ruby & Python*) |
|
| `g:plug_retries` | 2 | Number of retries in case of timeout (*Ruby & Python*) |
|
||||||
| `g:plug_shallow` | 1 | Use shallow clone |
|
| `g:plug_shallow` | 1 | Use shallow clone |
|
||||||
| `g:plug_window` | `vertical topleft new` | Command to open plug window |
|
| `g:plug_window` | `vertical topleft new` | Command to open plug window |
|
||||||
|
| `g:plug_pwindow` | `above 12new` | Command to open preview window in `PlugDiff` |
|
||||||
| `g:plug_url_format` | `https://git::@github.com/%s.git` | `printf` format to build repo URL (Only applies to the subsequent `Plug` commands) |
|
| `g:plug_url_format` | `https://git::@github.com/%s.git` | `printf` format to build repo URL (Only applies to the subsequent `Plug` commands) |
|
||||||
|
|
||||||
|
|
||||||
|
10
plug.vim
10
plug.vim
@ -2181,11 +2181,15 @@ function! s:preview_commit()
|
|||||||
return
|
return
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
if exists('g:plug_pwindow') && !s:is_preview_window_open()
|
||||||
|
execute g:plug_pwindow
|
||||||
|
execute 'e' sha
|
||||||
|
else
|
||||||
execute 'pedit' sha
|
execute 'pedit' sha
|
||||||
wincmd P
|
wincmd P
|
||||||
setlocal filetype=git buftype=nofile nobuflisted modifiable
|
endif
|
||||||
execute 'silent read !cd' s:shellesc(g:plugs[name].dir) '&& git show --no-color --pretty=medium' sha
|
setlocal previewwindow filetype=git buftype=nofile nobuflisted modifiable
|
||||||
normal! gg"_dd
|
execute 'silent %!cd' s:shellesc(g:plugs[name].dir) '&& git show --no-color --pretty=medium' sha
|
||||||
setlocal nomodifiable
|
setlocal nomodifiable
|
||||||
nnoremap <silent> <buffer> q :q<cr>
|
nnoremap <silent> <buffer> q :q<cr>
|
||||||
wincmd p
|
wincmd p
|
||||||
|
@ -365,6 +365,22 @@ Execute (New commits on remote, PlugUpdate, then PlugDiff):
|
|||||||
AssertEqual 1, &previewwindow
|
AssertEqual 1, &previewwindow
|
||||||
pclose
|
pclose
|
||||||
|
|
||||||
|
Execute (Test g:plug_pwindow):
|
||||||
|
let g:plug_pwindow = 'below 5new'
|
||||||
|
PlugDiff
|
||||||
|
AssertExpect '^- ', 1
|
||||||
|
execute "normal ]]jo"
|
||||||
|
|
||||||
|
AssertEqual 0, &previewwindow
|
||||||
|
AssertEqual 1, winnr()
|
||||||
|
wincmd P
|
||||||
|
AssertEqual 1, &previewwindow
|
||||||
|
AssertEqual 2, winnr()
|
||||||
|
AssertEqual 5, winheight('.')
|
||||||
|
wincmd p
|
||||||
|
normal q
|
||||||
|
unlet g:plug_pwindow
|
||||||
|
|
||||||
Execute (Reuse Plug window in another tab):
|
Execute (Reuse Plug window in another tab):
|
||||||
let tabnr = tabpagenr()
|
let tabnr = tabpagenr()
|
||||||
PlugDiff
|
PlugDiff
|
||||||
|
Loading…
Reference in New Issue
Block a user