Created
April 21, 2016 00:46
-
-
Save mhartington/9afd2fefd909d0c8767e8d2ab2a876bf to your computer and use it in GitHub Desktop.
gitUnit.vim
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " Git from unite...ERMERGERD ------------------------------------------------{{{ | |
| let g:unite_source_menu_menus = {} " Useful when building interfaces at appropriate places | |
| let g:unite_source_menu_menus.git = { | |
| \ 'description' : 'Fugitive interface', | |
| \} | |
| let g:unite_source_menu_menus.git.command_candidates = [ | |
| \[' git status', 'Gstatus'], | |
| \[' git diff', 'Gvdiff'], | |
| \[' git commit', 'Gcommit'], | |
| \[' git stage/add', 'Gwrite'], | |
| \[' git checkout', 'Gread'], | |
| \[' git rm', 'Gremove'], | |
| \[' git cd', 'Gcd'], | |
| \[' git push', 'exe "Git! push " input("remote/branch: ")'], | |
| \[' git pull', 'exe "Git! pull " input("remote/branch: ")'], | |
| \[' git pull rebase', 'exe "Git! pull --rebase " input("branch: ")'], | |
| \[' git checkout branch', 'exe "Git! checkout " input("branch: ")'], | |
| \[' git fetch', 'Gfetch'], | |
| \[' git merge', 'Gmerge'], | |
| \[' git browse', 'Gbrowse'], | |
| \[' git head', 'Gedit HEAD^'], | |
| \[' git parent', 'edit %:h'], | |
| \[' git log commit buffers', 'Glog --'], | |
| \[' git log current file', 'Glog -- %'], | |
| \[' git log last n commits', 'exe "Glog -" input("num: ")'], | |
| \[' git log first n commits', 'exe "Glog --reverse -" input("num: ")'], | |
| \[' git log until date', 'exe "Glog --until=" input("day: ")'], | |
| \[' git log grep commits', 'exe "Glog --grep= " input("string: ")'], | |
| \[' git log pickaxe', 'exe "Glog -S" input("string: ")'], | |
| \[' git index', 'exe "Gedit " input("branchname\:filename: ")'], | |
| \[' git mv', 'exe "Gmove " input("destination: ")'], | |
| \[' git grep', 'exe "Ggrep " input("string: ")'], | |
| \[' git prompt', 'exe "Git! " input("command: ")'], | |
| \] " Append ' --' after log to get commit info commit buffers | |
| nnoremap <silent> <Leader>g :Unite -direction=botright -silent -buffer-name=git -start-insert menu:git<CR> | |
| "}}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment