mirror of
https://github.com/preservim/nerdtree.git
synced 2025-02-16 18:52:48 +08:00
add s:AbsoluteTreeRoot()
This commit is contained in:
parent
5cafc7018d
commit
6b7760e6e4
|
@ -1320,7 +1320,15 @@ function! s:Abs(num)
|
|||
return 0 - a:num
|
||||
end
|
||||
endfunction
|
||||
|
||||
"FUNCTION: s:AbsoluteTreeRoot(){{{2
|
||||
" returns the highest cached ancestor of the current root
|
||||
function! s:AbsoluteTreeRoot()
|
||||
let currentNode = t:NERDTreeRoot
|
||||
while currentNode.parent != {}
|
||||
let currentNode = currentNode.parent
|
||||
endwhile
|
||||
return currentNode
|
||||
endfunction
|
||||
"FUNCTION: s:BufInWindows(bnum){{{2
|
||||
"[[STOLEN FROM VTREEEXPLORER.VIM]]
|
||||
"Determine the number of windows open to this buffer number.
|
||||
|
|
Loading…
Reference in New Issue
Block a user