Vim:是否可以为 NERDTree 执行 let g:netrw_keepdir=0 ?
是否可以为 NERDTree 执行 let g:netrw_keepdir=0
?
当我更改目录时,我想创建一个新文件。
那么如何将其设置为当前目录呢?
Is it possible to do let g:netrw_keepdir=0
for NERDTree?
When I change a directory, there I want to create a new file.
So how can I set this as current directory?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您想让刚刚通过 NERDTree 输入的目录成为
cwd
吗?如果是这样,您可以查看 NERDTree 的文档 (
:help nerdtree
) 并了解其中关于NERDTreeChDirMode
的内容。如果您想将此行为设置为默认行为(无论您如何打开/创建文件),请将以下行添加到您的 .vimrc 会将工作目录更改为包含活动缓冲区的目录。
Do you want to make the directory you just entered via NERDTree the
cwd
?If so, you could look at NERDTree's documentation (
:help nerdtree
) and see what it says aboutNERDTreeChDirMode
.If you want to make this behaviour the default (no matter how you open/create files), adding the following line to your .vimrc will change the working directory to the one containing the active buffer.