Fix argument of exists() function calls checking for autocommands. (#1165)

* Fix syntax of exists function calls checking for autocommands.

* Update version number in change log.
This commit is contained in:
Phil Runninger
2020-08-09 07:07:55 -04:00
committed by GitHub
parent 373a4b28e4
commit 6b5d70e5bf
3 changed files with 3 additions and 2 deletions

View File

@@ -28,7 +28,7 @@ endfunction
" FUNCTION: s:Creator._broadcastInitEvent() {{{1
function! s:Creator._broadcastInitEvent()
if exists('#NERDTreeInit')
if exists('#User#NERDTreeInit')
doautocmd User NERDTreeInit
endif
endfunction

View File

@@ -27,7 +27,7 @@ function! s:NERDTree.changeRoot(node)
call self.render()
call self.root.putCursorHere(0, 0)
if exists('#NERDTreeNewRoot')
if exists('#User#NERDTreeNewRoot')
doautocmd User NERDTreeNewRoot
endif
endfunction