add autocmds for fugitive integration
Add 2 autocmds - NERDTreeInit and NERDTreeNewRoot. These are called when a tree is created and when the root is changed. The goal is to give the fugitive plugin something to listen for so it can add the G* commands to nerdtree buffers in git repo dirs.
This commit is contained in:
parent
678bb28168
commit
2cb0fc78fb
@ -1211,6 +1211,8 @@ function! s:TreeFileNode.makeRoot()
|
|||||||
if g:NERDTreeChDirMode ==# 2
|
if g:NERDTreeChDirMode ==# 2
|
||||||
exec "cd " . b:NERDTreeRoot.path.str({'format': 'Edit'})
|
exec "cd " . b:NERDTreeRoot.path.str({'format': 'Edit'})
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
silent doautocmd User NERDTreeNewRoot
|
||||||
endfunction
|
endfunction
|
||||||
"FUNCTION: TreeFileNode.New(path) {{{3
|
"FUNCTION: TreeFileNode.New(path) {{{3
|
||||||
"Returns a new TreeNode object with the given path and parent
|
"Returns a new TreeNode object with the given path and parent
|
||||||
@ -3052,11 +3054,12 @@ function! s:initNerdTree(name)
|
|||||||
let b:NERDTreeShowHidden = g:NERDTreeShowHidden
|
let b:NERDTreeShowHidden = g:NERDTreeShowHidden
|
||||||
let b:NERDTreeShowBookmarks = g:NERDTreeShowBookmarks
|
let b:NERDTreeShowBookmarks = g:NERDTreeShowBookmarks
|
||||||
let b:NERDTreeRoot = newRoot
|
let b:NERDTreeRoot = newRoot
|
||||||
|
|
||||||
let b:NERDTreeType = "primary"
|
let b:NERDTreeType = "primary"
|
||||||
|
|
||||||
call s:renderView()
|
call s:renderView()
|
||||||
call b:NERDTreeRoot.putCursorHere(0, 0)
|
call b:NERDTreeRoot.putCursorHere(0, 0)
|
||||||
|
|
||||||
|
silent doautocmd User NERDTreeInit
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
"FUNCTION: s:initNerdTreeInPlace(dir) {{{2
|
"FUNCTION: s:initNerdTreeInPlace(dir) {{{2
|
||||||
@ -3086,6 +3089,8 @@ function! s:initNerdTreeInPlace(dir)
|
|||||||
let b:NERDTreeType = "secondary"
|
let b:NERDTreeType = "secondary"
|
||||||
|
|
||||||
call s:renderView()
|
call s:renderView()
|
||||||
|
|
||||||
|
silent doautocmd User NERDTreeInit
|
||||||
endfunction
|
endfunction
|
||||||
" FUNCTION: s:initNerdTreeMirror() {{{2
|
" FUNCTION: s:initNerdTreeMirror() {{{2
|
||||||
function! s:initNerdTreeMirror()
|
function! s:initNerdTreeMirror()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user