就像所做的那样:Ve
,:E
但是在 NERDTree 中。
答案1
:NERDTree %
对我有用。%是当前文件的路径,因此您不能 cd 到 %,但 NERDTree 会智能地解释它并打开文件夹而不是文件。
答案2
您想要“ :NERDTree
/ :NERDTreeToggle
”命令吗?请查看:
:help NERDTreeFunctionality
答案3
一种方法是始终自动 cd 到当前文件。这适用于 NERDTree。
http://vim.wikia.com/wiki/Change_to_the_directory_of_the_current_file
function AlwaysCD()
if bufname("") !~ "^ftp://"
lcd %:p:h
endif
endfunction
autocmd BufEnter * call AlwaysCD()