You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not sure if this is a bug or not, NERDTreeCWD appears to change directory to the :pwd of the NERDTree's buffer and not to the current buffer's when using autochdir.
I tracked this error down to this line in creator.vim. For some reason it changes the CWD when 'autochdir' is turned on, but... only when it's run as part of the :NERDTreeCWD command. Strangely, executing the command :topleft vertical 42 new manually has no effect on the CWD.
Not sure if this is a bug or not,
NERDTreeCWD
appears to change directory to the:pwd
of theNERDTree
's buffer and not to the current buffer's when usingautochdir
.Environment
Process
mvim ~/
:set autochdir
:cd ~/test/
:NERDTreeCWD
Current Result
NERDTree's root is the
~/
.Expected Result
NERDTree's root should be the
~/test/
.It works when changing the second step (2.) to
:set noautochdir
.The text was updated successfully, but these errors were encountered: