vim: add ,gb and ,gc (branch, checkout)

This commit is contained in:
2021-02-25 22:54:26 +00:00
parent 5cafedc56f
commit e0bd69c1d3

2
vimrc
View File

@@ -133,6 +133,8 @@ let g:magit_discard_untracked_do_delete=1
nnoremap ,gr :!git review<CR>
nnoremap ,gp :!git push<CR>
nnoremap ,gl :!git pull<CR>
nnoremap ,gb :!git branch -l<CR>
nnoremap ,gc :!git checkout -b
nnoremap ,m :Make<CR>