mirror of
https://github.com/preservim/nerdtree.git
synced 2025-11-09 20:03:48 -05:00
* Fix "R doesn't work when doing 'vim <folder>'" a different way. Instead of assigning a value to t:NERDTreeBufName for a window tree, which is used to determine if NERDTree is open, simply also look at the current buffer's name to see if it matches the NERDTree pattern. * Replace hardcoded buffer name prefix with BufNamePrefix() function.
This commit is contained in:
@@ -153,7 +153,7 @@ endfunction
|
||||
|
||||
"FUNCTION: s:NERDTree.IsOpen() {{{1
|
||||
function! s:NERDTree.IsOpen()
|
||||
return s:NERDTree.GetWinNum() != -1
|
||||
return s:NERDTree.GetWinNum() != -1 || bufname('%') =~# '^' . g:NERDTreeCreator.BufNamePrefix() . '\d\+$'
|
||||
endfunction
|
||||
|
||||
"FUNCTION: s:NERDTree.isTabTree() {{{1
|
||||
|
||||
Reference in New Issue
Block a user