mirror of
https://github.com/preservim/nerdtree.git
synced 2024-11-22 11:32:25 +08:00
When searching for root line num, stop at the end of the file. (#1015)
* When searching for root line num, stop at the end of the file. When using the following NERDTreeStatusLine, Vim would lock up and not work anymore. The problem was that when trying to find the root line number, the loop was continuing past the end of the file, looping "forever". The fix was to simply stop at the end of the file. let g:NERDTreeStatusline = "%{exists('g:NERDTreeFileNode')&&" . \ "has_key(g:NERDTreeFileNode.GetSelected(),'path')?" . \ "g:NERDTreeFileNode.GetSelected().path.getLastPathComponent(0):''}" * Update change log.
This commit is contained in:
parent
62b78de367
commit
89a1a4355b
|
@ -1,6 +1,7 @@
|
|||
# Change Log
|
||||
|
||||
#### 5.2...
|
||||
- **.4**: When searching for root line num, stop at end of file. (PhilRunninger) #1015
|
||||
- **.3**: Fix `<CR>` key map on the bookmark (lkebin) #1014
|
||||
- **.2**: Make Enter work on the `.. ( up a dir )` line (PhilRunninger) #1013
|
||||
- **.1**: Fix nerdtree#version() on Windows. (PhilRunninger) N/A
|
||||
|
|
|
@ -254,7 +254,7 @@ endfunction
|
|||
" gets the line number of the root node
|
||||
function! s:UI.getRootLineNum()
|
||||
let rootLine = 1
|
||||
while getline(rootLine) !~# '^\(/\|<\)'
|
||||
while rootLine <= line('$') && getline(rootLine) !~# '^\(/\|<\)'
|
||||
let rootLine = rootLine + 1
|
||||
endwhile
|
||||
return rootLine
|
||||
|
|
Loading…
Reference in New Issue
Block a user