Add a debugging message

This commit is contained in:
Jason Franklin 2017-12-21 09:26:26 -05:00
parent 5301dd24fb
commit 90d08dc626

View File

@ -304,6 +304,11 @@ function! s:findAndRevealPath(path)
endif
let l:node = b:NERDTree.root.reveal(l:pathObj)
if empty(l:node)
echomsg 'l:node is totally empty...'
endif
call b:NERDTree.render()
call l:node.putCursorHere(1, 0)