Add fugitive vim config

- Adds Ggpush command (similar to ggpush in shell)
- Adds Gpr commands set for creating new PR easily
pull/1/head
Ensar Sarajčić 2021-01-14 12:40:40 +01:00
parent 7a17450d43
commit 4eb7b710a6
1 changed files with 44 additions and 0 deletions

View File

@ -0,0 +1,44 @@
" -----------------------------------------------------------------------------
" - Fugitive.vim setup and extra mappings -
" -----------------------------------------------------------------------------
" Shorcut to push directly to current branch on origin
" Similar to `ggpush` in fish config
function! s:PushOrigin()
execute 'Gpush origin ' . FugitiveHead()
endfunction
" Generates url for creating PR for current branch
" Tested only with github.com
" Works regardless of ssh or https for origin config
" Hardcoded to use 'origin' remote
function! s:GetPrUrl()
let origin_url = fugitive#RemoteUrl('origin')
let origin_url = substitute(l:origin_url, ':', '/', '')
let origin_url = substitute(l:origin_url, 'git@', 'https://', '')
let pr_url = l:origin_url . '/compare/' . FugitiveHead() . '?expand=1'
return l:pr_url
endfunction
" Prints current branches PR url (not saved to :messages)
" Makes it easy to use terminal for opening url on click
function! s:PrintPrUrl()
echo s:GetPrUrl()
endfunction
" Copies current branches PR url to system clipboard
function! s:CopyPrUrl()
let @+ = s:GetPrUrl()
endfunction
" Opens current banches PR url in default browser
" Utilizes netrw browse, meaning it should behave same as netrw
function! s:OpenNewPr()
call netrw#BrowseX(s:GetPrUrl(), 0)
endfunction
command! -nargs=0 Ggpush :call s:PushOrigin()
command! -nargs=0 Gpr :call s:OpenNewPr()
command! -nargs=0 Gpropen :call s:OpenNewPr()
command! -nargs=0 Gprprint :call s:PrintPrUrl()
command! -nargs=0 Gprcopy :call s:CopyPrUrl()