nerdtree可以使用两个窗口来显示工作目录和浏览目录
有没有插件可以在vim中打开两个窗口,一个显示当前工作目录(我正在编辑的目录),另一个用于浏览目录。
Are there any plugins that will open two windows in vim, one displaying the current working directory (the directory I'm editing) and another used to browse directory.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
vim
CTRL-W CTRL-V
启动新窗口CTRL-W CTRL-W
翻转到新窗口NERDTree [otherdirectory]
开始浏览[otherdirectory]
?这给了我两个独立的 NERDTree 窗口。
What about
vim .
to start NERDTree for the current working directoryCTRL-W CTRL-V
to start a new windowCTRL-W CTRL-W
to flip over to the new windowNERDTree [otherdirectory]
to start browsing[otherdirectory]
?That gives me two independent NERDTree windows.