nerdtree/nerdtree_plugin/git_menu.vim

117 lines
3.9 KiB
VimL
Raw Normal View History

2009-07-19 17:05:21 +04:00
" ============================================================================
2009-09-02 14:07:12 +04:00
" File: git_menu.vim
2009-07-19 17:05:21 +04:00
" Description: plugin for the NERD Tree that provides a git menu
" Maintainer: Martin Grenfell <martin_grenfell at msn dot com>
" Last Change: 20 July, 2009
" License: This program is free software. It comes without any warranty,
" to the extent permitted by applicable law. You can redistribute
" it and/or modify it under the terms of the Do What The Fuck You
" Want To Public License, Version 2, as published by Sam Hocevar.
" See http://sam.zoy.org/wtfpl/COPYING for more details.
"
" ============================================================================
2009-07-21 11:27:10 +04:00
"
" Adds a "g" submenu to the NERD tree menu.
"
" Note: this plugin assumes that the current tree root has a .git dir under
" it, and that the working tree and the .git repo are in the same place
"
2009-07-19 17:05:21 +04:00
if exists("g:loaded_nerdtree_git_menu")
finish
endif
let g:loaded_nerdtree_git_menu = 1
call NERDTreeAddMenuSeparator({'isActiveCallback': 'NERDTreeGitMenuEnabled'})
let s:menu = NERDTreeAddSubmenu({
2009-07-21 11:27:10 +04:00
\ 'text': '(g)it menu',
\ 'shortcut': 'g',
\ 'isActiveCallback': 'NERDTreeGitMenuEnabled' })
2009-07-21 11:27:10 +04:00
call NERDTreeAddMenuItem({
\ 'text': 'git (a)dd',
\ 'shortcut': 'a',
\ 'isActiveCallback': 'NERDTreeGitMenuEnabled',
\ 'callback': 'NERDTreeGitAdd',
\ 'parent': s:menu })
call NERDTreeAddMenuItem({
\ 'text': 'git (c)heckout',
\ 'shortcut': 'c',
\ 'isActiveCallback': 'NERDTreeGitMenuEnabled',
\ 'callback': 'NERDTreeGitCheckout',
\ 'parent': s:menu })
call NERDTreeAddMenuItem({
\ 'text': 'git (m)v',
\ 'shortcut': 'm',
\ 'isActiveCallback': 'NERDTreeGitMenuEnabled',
\ 'callback': 'NERDTreeGitMove',
\ 'parent': s:menu })
call NERDTreeAddMenuItem({
\ 'text': 'git (r)m',
\ 'shortcut': 'r',
\ 'isActiveCallback': 'NERDTreeGitMenuEnabled',
\ 'callback': 'NERDTreeGitRemove',
\ 'parent': s:menu })
2009-07-21 11:27:10 +04:00
function! NERDTreeGitMenuEnabled()
return isdirectory(s:GitRepoPath())
endfunction
function! s:GitRepoPath()
return b:NERDTreeRoot.path.str() . ".git"
2009-07-21 11:27:10 +04:00
endfunction
2009-07-19 17:05:21 +04:00
function! NERDTreeGitMove()
2009-07-19 17:05:21 +04:00
let node = g:NERDTreeFileNode.GetSelected()
let path = node.path
2009-09-01 09:15:48 +04:00
let p = path.str({'format': 'OS', 'escape': 1})
let newPath = input("==========================================================\n" .
\ "Enter the new path for the file: \n" .
2009-09-01 09:15:48 +04:00
\ "", node.path.str({'format': 'OS'}))
if newPath ==# ''
call s:echo("git mv aborted.")
return
endif
call s:execGitCmd('mv ' . p . ' ' . newPath)
endfunction
2009-07-19 17:05:21 +04:00
function! NERDTreeGitAdd()
let node = g:NERDTreeFileNode.GetSelected()
let path = node.path
2009-09-01 09:15:48 +04:00
call s:execGitCmd('add ' . path.str({'format': 'OS', 'escape': 1}))
endfunction
2009-07-19 17:05:21 +04:00
function! NERDTreeGitRemove()
let node = g:NERDTreeFileNode.GetSelected()
let path = node.path
2009-09-01 09:15:48 +04:00
call s:execGitCmd('rm ' . path.str({'format': 'OS', 'escape': 1}))
endfunction
2009-07-19 17:05:21 +04:00
function! NERDTreeGitCheckout()
let node = g:NERDTreeFileNode.GetSelected()
let path = node.path
2009-09-01 09:15:48 +04:00
call s:execGitCmd('checkout ' . path.str({'format': 'OS', 'escape': 1}))
2009-07-19 17:05:21 +04:00
endfunction
function! s:execGitCmd(sub_cmd)
let extra_options = '--git-dir=' . s:GitRepoPath() . ' '
let extra_options .= '--work-tree=' . b:NERDTreeRoot.path.str()
let cmd = "git" . ' ' . extra_options . ' ' . a:sub_cmd
let output = system(cmd)
redraw!
if v:shell_error == 0
let node = g:NERDTreeFileNode.GetSelected()
if !node.isRoot()
call node.parent.refresh()
call NERDTreeRender()
2009-07-19 17:05:21 +04:00
endif
2009-07-21 11:27:10 +04:00
else
echomsg output
2009-07-19 17:05:21 +04:00
endif
endfunction